2011-12-21 21:12:28 +01:00
|
|
|
# Template file for 'newlisp'
|
|
|
|
pkgname=newlisp
|
2013-03-21 01:06:54 +01:00
|
|
|
version=10.4.5
|
2012-06-03 09:08:53 +02:00
|
|
|
revision=1
|
2012-06-04 16:57:56 +02:00
|
|
|
makedepends="which readline-devel libffi-devel"
|
2013-03-21 01:06:54 +01:00
|
|
|
crossmakedepends="readline-devel libffi-devel"
|
2011-12-21 21:12:28 +01:00
|
|
|
short_desc="Lisp-like, general-purpose scripting language"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-3, zlib, $pkgname"
|
2012-06-04 16:57:56 +02:00
|
|
|
homepage="http://www.newlisp.org"
|
|
|
|
distfiles="$homepage/downloads/$pkgname-$version.tgz"
|
2013-03-21 01:06:54 +01:00
|
|
|
checksum=4bf972a8e5f8c4490f02e6a987ee76c4690498841ffd5235b38a03694ad2da52
|
2011-12-21 21:12:28 +01:00
|
|
|
long_desc="
|
|
|
|
newLISP is a Lisp-like, general-purpose scripting language. It is especially
|
|
|
|
well-suited for applications in AI, web search, natural language processing,
|
|
|
|
and machine learning. Because of its small resource requirements, newLISP
|
|
|
|
is also excellent for embedded systems applications. Most of the functions
|
|
|
|
you will ever need are already built in. This includes networking functions,
|
|
|
|
support for distributed and parallel processing, and Bayesian statistics."
|
|
|
|
|
|
|
|
do_build() {
|
2013-03-21 01:06:54 +01:00
|
|
|
make -f makefile_linuxLP64_utf8_ffi ${makejobs}
|
2011-12-21 21:12:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
vmkdir usr/bin
|
|
|
|
vmkdir usr/share/man/man1
|
|
|
|
make bindir=$DESTDIR/usr/bin datadir=$DESTDIR/usr/share \
|
|
|
|
mandir=$DESTDIR/usr/share/man install
|
|
|
|
vmove usr/share/doc/$pkgname/COPYING \
|
|
|
|
usr/share/licenses/$pkgname
|
|
|
|
}
|