updated on Thu Jan 12 16:09:17 UTC 2012
[aur-mirror.git] / sfl / PKGBUILD
blobeb3a1559dcc374d18c90c25805f7f235c558896f
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
7 pkgname=sfl
8 pkgver=2.1
9 pkgrel=1
10 pkgdesc="the imatix standard function library"
11 arch=('i686')
12 url="http://legacy.imatix.com/html/sfl/sfl.htm"
13 license=('custom')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 source=("http://legacy.imatix.com/pub/sfl/src/${pkgname}src21.tgz")
25 noextract=()
26 md5sums=(06bb87a94748c0c4d4c7b5ad4f285a69) #generate with 'makepkg -g'
28 build() {
29   cd "$srcdir"
31   ./build
32   install -D -m755 libsfl.a $pkgdir/usr/lib/libsfl.a
33   install -D license.txt  $pkgdir/usr/share/licenses/$pkgname/license.txt
34   for i in $(ls *.h); do install -D $i $pkgdir/usr/include/$i; done
36   
37   
40 # vim:set ts=2 sw=2 et: