s/TERMUX_PKG_BUILD_REVISION/TERMUX_PKG_REVISION/
[termux-packages] / packages / tinyscheme / build.sh
1 TERMUX_PKG_HOMEPAGE=http://tinyscheme.sourceforge.net/home.html
2 TERMUX_PKG_DESCRIPTION="Very small scheme implementation"
3 TERMUX_PKG_VERSION=1.41
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/tinyscheme/tinyscheme/tinyscheme-1.41/tinyscheme-1.41.tar.gz
6 TERMUX_PKG_BUILD_IN_SRC=yes
7
8 termux_step_pre_configure () {
9 AR+=" crs"
10 LD=$CC
11 }
12
13 # TODO: Add the tsx extension with file/networking (http://heras-gilsanz.com/manuel/tsx.html)
14 # and the regexp extension (http://downloads.sourceforge.net/project/tinyscheme/tinyscheme-regex/1.3/re-1.3.tar.gz)
15 #termux_step_post_configure () {
16 #TSX_TARFILE=$TERMUX_PKG_CACHEDIR/tsx-1.1.tar.gz
17 #test ! -f $TSX_TARFILE && curl -o $TSX_TARFILE "http://heras-gilsanz.com/manuel/tsx-1.1.tgz"
18 #}
19
20 termux_step_post_make_install () {
21 mkdir -p $TERMUX_PREFIX/share/tinyscheme/
22 cp $TERMUX_PKG_SRCDIR/init.scm $TERMUX_PREFIX/share/tinyscheme/
23 }