mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
26 lines
809 B
Plaintext
26 lines
809 B
Plaintext
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.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"
|