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>
10 pkgdesc="the imatix standard function library"
12 url="http://legacy.imatix.com/html/sfl/sfl.htm"
24 source=("http://legacy.imatix.com/pub/sfl/src/${pkgname}src21.tgz")
26 md5sums=(06bb87a94748c0c4d4c7b5ad4f285a69) #generate with 'makepkg -g'
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
40 # vim:set ts=2 sw=2 et: