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.
8 pkgdesc="Chicken Scheme Egg: qwiki - the quick wiki"
10 url="http://chicken.wiki.br/eggref/4/qwiki"
12 depends=('chicken>=4.5.0' 'chicken-intarweb' 'chicken-uri-common>=1.0' 'chicken-spiffy>=4.8' 'chicken-doctype>=1.2' 'chicken-sxml-transforms>=1.4' 'chicken-multidoc' 'chicken-svn-client>=0.13' 'chicken-estraier-client' 'chicken-sxpath' 'chicken-sha1' 'chicken-svnwiki-sxml>=0.2.1' 'chicken-html-parser' 'chicken-colorize' )
13 options=(docs !libtool !emptydirs)
14 install="chicken.install"
15 source=("$pkgname-$pkgver.chunked::http://chicken.kitten-technologies.co.uk/henrietta.cgi?name=qwiki&version=$pkgver"
16 "$pkgname-$pkgver.html::http://chicken.wiki.br/eggref/4/qwiki.html")
17 md5sums=('223a1d6b8f1e329273a1481c024dcc3f' '8a15f9adef872a5f9f50a451affc39b8')
20 # unchunk the blob that was downloaded from henrietta
22 mkdir -p "qwiki-$pkgver"
23 cat "$pkgname-$pkgver.chunked" | while :; do
24 while read -r bar ver endbar fname len; do
25 [[ -n "$ver" ]] && break
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 "qwiki-$pkgver/$fname"
32 elif [[ "$len" -eq 0 ]]; then
33 touch "qwiki-$pkgver/$fname"
35 dd iflag=fullblock of="qwiki-$pkgver/$fname" ibs="$len" count=1 2>/dev/null
40 cd "$srcdir/qwiki-$pkgver"
41 cp ../$pkgname-$pkgver.html qwiki.html
44 mkdir -p "$pkgdir/usr/lib/chicken/5" "$pkgdir/usr/share/chicken/qwiki"
46 chicken-install -p "$pkgdir/usr"
48 install -Dm644 "qwiki.html" "$pkgdir/usr/share/doc/$pkgname/qwiki.html"