30 lines
822 B
Bash
30 lines
822 B
Bash
# Template file for 'chibi-scheme'
|
|
pkgname=chibi-scheme
|
|
version=0.8
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_build_args="PREFIX=/usr"
|
|
short_desc="Small Footprint R7RS Scheme for use as a C Extension Language"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="3-clause-BSD"
|
|
homepage="http://synthcode.com/scheme/chibi/"
|
|
distfiles="https://github.com/ashinn/chibi-scheme/archive/${version}.tar.gz"
|
|
checksum=8a077859b123216c123c243db391b0fe4c0cf73978c7cdd7b8ea853a48192756
|
|
disable_parallel_build=yes
|
|
nocross=yes
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
chibi-scheme-devel_package() {
|
|
depends="chibi-scheme>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/chibi-ffi
|
|
vmove usr/share/man/man1/chibi-ffi.1
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|