mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/tinyscheme: New aport
A lightweight Scheme interpreter implementing a large subset of R5RS http://tinyscheme.sourceforge.net/home.html
This commit is contained in:
parent
2bf4ed6b01
commit
5f2f03e3e2
26
testing/tinyscheme/APKBUILD
Normal file
26
testing/tinyscheme/APKBUILD
Normal file
@ -0,0 +1,26 @@
|
||||
# Contributor: Marian <m.buschsieweke@uni-muenster.de>
|
||||
# Maintainer: Marian <m.buschsieweke@uni-muenster.de>
|
||||
pkgname=tinyscheme
|
||||
pkgver=1.41
|
||||
pkgrel=0
|
||||
pkgdesc="A lightweight Scheme interpreter implementing a large subset of R5RS"
|
||||
url="http://tinyscheme.sourceforge.net/home.html"
|
||||
arch="all"
|
||||
license="BSD"
|
||||
makedepends=""
|
||||
subpackages=""
|
||||
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
make all
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
mkdir -p "${pkgdir}/usr/bin" "${pkgdir}/usr/lib"
|
||||
install -Dm755 scheme "${pkgdir}/usr/bin/tinyscheme"
|
||||
install -Dm644 libtinyscheme.so "${pkgdir}/usr/lib/libtinyscheme.so"
|
||||
}
|
||||
sha512sums="a9c1c9cd7a11bf31e0f8ac813ebd6e731cb56b9526fd14d343d7f8c479a8e1b561b744b3f522512adc023cacd1acbf52aa18bf5d8db68f767971660305b79b0f tinyscheme-1.41.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user