summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: eefa555fe3137602527ebc4e99eb64847bb6632a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pkgname=chicken-apropos
_name=apropos
pkgver=3.8.3
pkgrel=1
pkgdesc='Chicken Scheme apropos'
arch=('x86_64')
license=('BSD')
depends=("chicken" "chicken-srfi-1" "chicken-utf8" "chicken-string-utils" "chicken-symbol-utils" "chicken-check-errors>=3.4.0")
url='http://wiki.call-cc.org/eggref/5/apropos'

build() {
  CHICKEN_INSTALL_REPOSITORY=${srcdir} CHICKEN_INSTALL_PREFIX=${srcdir} chicken-install -no-install-dependencies $_name:$pkgver
}
package() {
  install -d ${pkgdir}/usr/lib/chicken/11
  find ${srcdir} -maxdepth 1 -type f -exec cp -t ${pkgdir}/usr/lib/chicken/11 {} +
}