updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / chicken-openal / PKGBUILD
blob3bc577996f637e1cb3a475bf2ae842895256b4d4
1 # Maintainer: Jim Pryor <profjim@jimpryor.net>
2 # Warning: The chicken-* egg PKGBUILDS in AUR are auto-generated.
3 #          Please report errors you notice so that I can tweak the generation script.
5 pkgname=chicken-openal
6 pkgver=0.7
7 pkgrel=4
8 pkgdesc="Chicken Scheme Egg: OpenAL 1.1 bindings"
9 arch=('i686' 'x86_64')
10 url="http://chicken.wiki.br/eggref/4/openal"
11 license=('BSD')
12 depends=('chicken>=4.5.0' 'chicken-easyffi' 'openal' 'freealut')
13 options=(docs !libtool !emptydirs)
14 install="chicken.install"
15 source=("$pkgname-$pkgver.chunked::http://chicken.kitten-technologies.co.uk/henrietta.cgi?name=openal&version=$pkgver"
16                 "$pkgname-$pkgver.html::http://chicken.wiki.br/eggref/4/openal.html")
17 md5sums=('5eba523eca9a7b5de0ff5e9203fb63ba' '956a6f76c0a46984b39000b30ac5fe45')
19 build() {
20         # unchunk the blob that was downloaded from henrietta
21         cd "$srcdir"
22         mkdir -p "openal-$pkgver"
23         cat "$pkgname-$pkgver.chunked" | while :; do
24                 while read -r bar ver endbar fname len; do
25                         [[ -n "$ver" ]] && break
26                 done
27                 [[ "$endbar" = "|#" ]] || fname="$ver" len="$endbar"
28                 [[ -z "$fname" ]] && break
29                 fname="${fname:1:${#fname}-2}" # delete quotes around fname
30                 if [[ "${fname: -1}" == / ]]; then
31                         mkdir -p "openal-$pkgver/$fname"
32                 elif [[ "$len" -eq 0 ]]; then
33                         touch "openal-$pkgver/$fname"
34                 else
35                         dd iflag=fullblock of="openal-$pkgver/$fname" ibs="$len" count=1 2>/dev/null
36                 fi
37         done
38         
40         cd "$srcdir/openal-$pkgver"
41         cp ../$pkgname-$pkgver.html openal.html
42         
43         
44         mkdir -p "$pkgdir/usr/lib/chicken/5" "$pkgdir/usr/share/chicken/openal"
45                 
46         chicken-install -p "$pkgdir/usr"
47         
48                 install -Dm644 "openal.html" "$pkgdir/usr/share/doc/$pkgname/openal.html"