summaryrefslogtreecommitdiff
path: root/pcr/newlisp/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/newlisp/PKGBUILD')
-rw-r--r--pcr/newlisp/PKGBUILD26
1 files changed, 0 insertions, 26 deletions
diff --git a/pcr/newlisp/PKGBUILD b/pcr/newlisp/PKGBUILD
deleted file mode 100644
index a53106390..000000000
--- a/pcr/newlisp/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Contributor: scrawler <scrawler@gmail.com>
-# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@cwb.IO>
-
-pkgname=newlisp
-pkgver=10.4.5
-pkgrel=1
-pkgdesc="newLISP is a LISP like, general purpose scripting language."
-url="http://www.newlisp.org"
-license=('GPL')
-arch=('x86_64' 'i686')
-depends=('readline')
-optdepends=('openjdk6')
-options=('docs')
-source=(http://newlisp.org/downloads/$pkgname-$pkgver.tgz)
-install=$pkgname.install
-
-build() {
-cd $srcdir/$pkgname-$pkgver
-./configure
-[ $CARCH = "x86_64" ] && make -f makefile_linuxLP64_utf8
-[ $CARCH = "i686" ] && make -f makefile_linux_utf8
-install -d $pkgdir/usr/bin
-install -d $pkgdir/usr/share/man/man1
-make bindir=$pkgdir/usr/bin mandir=$pkgdir/usr/share/man \
-datadir=$pkgdir/usr/share install
-}