updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / sfldoc / PKGBUILD
blob4b22048e382b4695472aa1701d63276cbb8135a2
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=sfldoc
8 pkgver=2.1
9 pkgrel=1
10 pkgdesc="the imatix standard function library documentation"
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/doc/${pkgname}21.tgz")
25 noextract=()
26 md5sums=(171a65fb7cab9f41acc853fd44c7ed3c) #generate with 'makepkg -g'
28 build() {
29   cd "$srcdir"
30   mkdir -p $pkgdir/usr/share/doc/sfl
31   for i in `ls` ; do install -m 644 -T $i $pkgdir/usr/share/doc/sfl/$i; done
33   
34   
37 # vim:set ts=2 sw=2 et: