void-packages/srcpkgs/newlisp/template

33 lines
969 B
Text
Raw Normal View History

2011-12-21 20:12:28 +00:00
# Template file for 'newlisp'
pkgname=newlisp
2014-06-06 05:40:01 +00:00
version=10.6.0
revision=1
hostmakedepends="which"
makedepends="readline-devel>=6.3 libffi-devel"
2011-12-21 20:12:28 +00:00
short_desc="Lisp-like, general-purpose scripting language"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-3, zlib, $pkgname"
2012-06-04 14:57:56 +00:00
homepage="http://www.newlisp.org"
distfiles="$homepage/downloads/$pkgname-$version.tgz"
2014-06-06 05:40:01 +00:00
checksum=59200b97879231c331f6c0e519a66602c9ae82a8f744c2be236e08ad6f91ff7f
2011-12-21 20:12:28 +00:00
do_build() {
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
2014-02-04 04:50:42 +00:00
export CFLAGS+=" -DNEWLISP64"
fi
make -f makefile_linuxLP64_utf8_ffi ${makejobs}
2011-12-21 20:12:28 +00:00
}
do_install() {
vmkdir usr/bin
vmkdir usr/share/man/man1
2013-05-22 09:18:54 +00:00
vmkdir usr/share/licenses/$pkgname
2011-12-21 20:12:28 +00:00
make bindir=$DESTDIR/usr/bin datadir=$DESTDIR/usr/share \
mandir=$DESTDIR/usr/share/man install
2013-05-22 08:42:50 +00:00
mv $DESTDIR/usr/share/doc/$pkgname/COPYING \
$DESTDIR/usr/share/licenses/$pkgname
# Create newlisp symlink;
ln -sfr ${DESTDIR}/usr/bin/newlisp-${version} ${DESTDIR}/usr/bin/newlisp
2011-12-21 20:12:28 +00:00
}