core/fpc-qtbindings/PKGBUILD

32 lines
1.0 KiB
Bash
Raw Normal View History

2010-08-19 05:48:17 +08:00
pkgname=fpc-qtbindings
2012-03-02 05:29:54 +08:00
pkgver=2.5
2010-08-19 05:48:17 +08:00
pkgrel=1
_qt4pas=V"$pkgver"_Qt4.5.3
2010-08-19 05:48:17 +08:00
pkgdesc='Free Pascal Qt4 Binding'
url='http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html'
license=('GPL')
depends=('qt')
2015-01-25 16:04:07 +08:00
makedepends=('gdk-pixbuf' 'qtwebkit')
2010-08-19 05:48:17 +08:00
arch=('i686' 'x86_64')
2015-01-25 16:04:07 +08:00
source=(http://users.telenet.be/Jan.Van.hijfte/qtforfpc/V"$pkgver"/qt4pas-$_qt4pas.tar.gz)
# http://chakra-linux.org/sources/fpc-qtbindings/gdk-pixbuf-1.0.tar.gz)
md5sums=('8249bc17e4167e077d22c7f5fb118bb2')
# 'e0cd561f24e8fd71621230c24fed73cc')
2010-08-19 05:48:17 +08:00
build() {
cd $srcdir/qt4pas-$_qt4pas
qmake
make
}
package() {
cd $srcdir/qt4pas-$_qt4pas
2015-01-25 16:04:07 +08:00
install -dvm755 $pkgdir/usr/lib
2010-08-19 05:48:17 +08:00
cp -v libQt4Pas.so.5.$pkgver $pkgdir/usr/lib
ln -sfv libQt4Pas.so.5.$pkgver $pkgdir/usr/lib/libQt4Pas.so.5.2
ln -sfv libQt4Pas.so.5.$pkgver $pkgdir/usr/lib/libQt4Pas.so.5
ln -sfv libQt4Pas.so.5.$pkgver $pkgdir/usr/lib/libQt4Pas.so
2015-01-25 16:04:07 +08:00
# mkdir -p $pkgdir/usr/include/gdk-pixbuf-1.0/gdk-pixbuf
# cp -v $srcdir/gdk-pixbuf/* $pkgdir/usr/include/gdk-pixbuf-1.0/gdk-pixbuf
2010-08-19 05:48:17 +08:00
}