34 lines
667 B
Bash
34 lines
667 B
Bash
# Maintainer: Christoffer Müller Madsen <christoffer.m.madsen@thedevcave.net>
|
|
pkgname=pcs
|
|
pkgver=8.4
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc="Scheme interpreter"
|
|
arch=("x86_64")
|
|
url="http://www.scheme.com/petitechezscheme.html"
|
|
license=('custom')
|
|
install=
|
|
changelog=
|
|
source=("${pkgname}v${pkgver}-a6le.tar.gz::http://www.scheme.com/download/${pkgname}v${pkgver}-a6le.tar.gz")
|
|
md5sums=("fc6729407dc9c4eca7903b890e26ae29")
|
|
|
|
prepare() {
|
|
cd "csv${pkgver}"
|
|
}
|
|
|
|
build() {
|
|
cd "csv${pkgver}/custom"
|
|
./configure --installprefix=/usr --temproot="$pkgdir/"
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "csv${pkgver}/custom"
|
|
#TODO: check if build succeded
|
|
}
|
|
|
|
package() {
|
|
cd "csv${pkgver}/custom"
|
|
make install
|
|
}
|