blob: 809ff86e9d684de6956c1a70ffdabb62cc355634 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 83860 2013-02-05 18:39:27Z idevolder $
# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
# Contributor: Fabien Wang <fabien(dot)wang(at)gmail(dot)com>
pkgname=qt4pas
pkgver=2.5
pkgrel=3
pkgdesc="Free Pascal Qt4 Binding Library"
arch=('i686' 'x86_64')
url="http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html"
license=('LGPL')
depends=('qtwebkit')
source=("http://users.telenet.be/Jan.Van.hijfte/qtforfpc/V2.5/qt4pas-V2.5_Qt4.5.3.tar.gz")
md5sums=('8249bc17e4167e077d22c7f5fb118bb2')
build() {
cd "$srcdir/qt4pas-V2.5_Qt4.5.3/"
qmake -query
qmake
make
}
package() {
cd "$srcdir/qt4pas-V2.5_Qt4.5.3/"
INSTALL_ROOT="$pkgdir" make install
pushd "$pkgdir/usr/lib"
for intflink in 'libqt4intf.so' 'libqt4intf.so.5' 'libqt4intf.so.5.2' 'libqt4intf.so.5.2.1' 'libqt4intf.so.5.2.5'; do
ln -s libQt4Pas.so.5.2.5 $intflink
done
popd
}
|