summaryrefslogtreecommitdiff
path: root/community/chicken/PKGBUILD
blob: 1abe3306377cb1d44fa1ada46dfe04658f1bae08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $Id: PKGBUILD 67462 2012-03-11 21:18:54Z lcarlier $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: <david@pako.st>

pkgname=chicken
pkgver=4.7.0
pkgrel=2
pkgdesc='A compiler for R5RS scheme, featuring handy extensions'
arch=('i686' 'x86_64')
url='http://www.call-with-current-continuation.org/'
license=('BSD')
depends=('gcc')
source=("http://code.call-cc.org/releases/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('9389388fdf04c3c64de29633aae12539')

build() {
  cd ${pkgname}-${pkgver}

  # parallel builds are not supported..
  export MAKEFLAGS="${MAKEFLAGS/-j?/}"

  # some yummy make options there. check out README in the tarball.
  make PLATFORM=linux PREFIX=/usr
}

package() {
  cd ${pkgname}-${pkgver}

  
  # parallel builds are not supported..
  export MAKEFLAGS="${MAKEFLAGS/-j?/}"
  make PLATFORM=linux PREFIX=/usr DESTDIR=${pkgdir} install

  install -D -m644 LICENSE \
    ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}