void-packages/srcpkgs/chicken/template
2013-07-19 08:58:57 +02:00

51 lines
1.3 KiB
Plaintext

# Template file for 'chicken'
pkgname=chicken
version=4.8.0.4
revision=1
short_desc="A practical and portable Scheme system"
maintainer="Juan RP <xtraeme@gmail.com>"
license="BSD"
homepage="http://www.call-cc.org"
distfiles="http://code.call-cc.org/releases/${version%.*}/$pkgname-$version.tar.gz"
checksum=cd6c4b05f76a6ac82ff32e8dbd53f7517a283bda32003c6b3baa0c6b24990fb2
long_desc="
CHICKEN is a compiler for the Scheme programming language. CHICKEN produces
portable, efficient C, supports almost all of the R5RS Scheme language
standard, and includes many enhancements and extensions. CHICKEN runs on
Linux, MacOS X, Windows, and many Unix flavours."
# No ARM support??!!!
only_for_archs="i686 x86_64"
do_build() {
make C_COMPILER_OPTIMIZATION_OPTIONS="$CFLAGS" PREFIX=/usr PLATFORM=linux
}
do_install() {
make PREFIX=/usr DESTDIR=$DESTDIR PLATFORM=linux install
vinstall LICENSE 644 usr/share/licenses/${pkgname}
}
libchicken_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
chicken-devel_package() {
depends="libchicken>=${version}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}
chicken_package() {
pkg_install() {
vmove usr
}
}