summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 01ddfefd4c39b033b46c2978882a1aa3a1665b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pkgname=chicken-uri-common
_name=uri-common
pkgver=2.0
pkgrel=1
pkgdesc='Chicken Scheme Parser for common URI schemes'
arch=('x86_64')
license=('BSD')
depends=("chicken" "chicken-uri-generic" "chicken-defstruct" "chicken-matchable" "chicken-srfi-1" "chicken-srfi-13" "chicken-srfi-14")
url='http://wiki.call-cc.org/eggref/5/uri-common'

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 {} +
}