blob: d74aa23372eb9021ce1f0102bb90591b95f33236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: taij33n <bwbuiz@gmail.com>
pkgname=picolisp
pkgver=18.4.26
pkgrel=1
pkgdesc="Fast and tiny 64-bit Lisp interpreter: OO, dynamic and functional (database, prolog, coroutines)."
url="http://www.picolisp.com"
arch=('x86_64')
license=('MIT')
depends=('bash' 'openssl')
optdepends=('jre: for picolisp ersatz.jar')
makedepends=('make' 'git' 'gcc')
_vendor="github.com/taij33n"
source=("git+https://$_vendor/$pkgname.git#tag=v$pkgver"
"mkAsm")
md5sums=("SKIP"
"SKIP")
install=$pkgname.install
build() {
# build tools first
cd "${srcdir}/${pkgname}/src"
make tools gate
make clean
# build the 64bit version
cd "${srcdir}/${pkgname}/src64"
# real 64-bit env
make
make clean
}
package() {
install -d -m755 "${pkgdir}/usr/lib/picolisp"
cp -a ${srcdir}/${pkgname}/* ${pkgdir}/usr/lib/picolisp/
}
|