2021-06-15 10:26:26 +02:00
|
|
|
#!/bin/bash
|
2009-11-14 12:48:50 +01:00
|
|
|
set -x -e
|
|
|
|
|
2010-01-29 03:44:37 +01:00
|
|
|
CWD=$(pwd)
|
|
|
|
|
|
|
|
PRGNAM=$(basename $CWD)
|
2009-11-14 12:48:50 +01:00
|
|
|
ARCH=$(uname -m)
|
2019-12-11 10:25:54 +01:00
|
|
|
VERSION=$(curl -s https://api.github.com/repos/factor/factor/releases/latest | grep tag_name | grep -o "[0-9.]*")
|
2009-11-14 12:48:50 +01:00
|
|
|
BUILD=1
|
|
|
|
|
2020-06-25 11:23:11 +02:00
|
|
|
TAG=gwh
|
2011-02-17 05:54:04 +01:00
|
|
|
OUTPUT=/tmp
|
2011-02-17 05:58:04 +01:00
|
|
|
TMP=/tmp/$TAG
|
|
|
|
PKG=$TMP/pkg-$PRGNAM
|
2009-11-14 12:48:50 +01:00
|
|
|
PREFIX=/usr
|
|
|
|
|
|
|
|
# cleaning
|
|
|
|
rm -fr $PKG
|
|
|
|
|
|
|
|
# unpacking
|
2019-02-27 16:17:20 +01:00
|
|
|
[ ! -e $CWD/${PRGNAM}-${VERSION}.tar.gz ] && wget -c http://downloads.factorcode.org/releases/$VERSION/factor-linux-x86-64-$VERSION.tar.gz -O $CWD/${PRGNAM}-${VERSION}.tar.gz
|
|
|
|
|
2009-11-14 12:48:50 +01:00
|
|
|
mkdir -p $PKG$PREFIX/libexec/
|
|
|
|
( cd $PKG$PREFIX/libexec/
|
2019-02-27 16:17:20 +01:00
|
|
|
tar xf $CWD/${PRGNAM}-${VERSION}.tar.gz
|
2009-11-14 12:48:50 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# installation
|
|
|
|
mkdir -p $PKG$PREFIX/{bin,doc/$PRGNAM-$VERSION}
|
|
|
|
cat <<EOF > $PKG$PREFIX/bin/$PRGNAM
|
2021-06-15 10:26:26 +02:00
|
|
|
#!/bin/bash
|
2010-09-09 04:10:46 +02:00
|
|
|
cd $PREFIX/libexec/$PRGNAM
|
|
|
|
./$PRGNAM \$@
|
2009-11-14 12:48:50 +01:00
|
|
|
EOF
|
|
|
|
chmod +x $PKG$PREFIX/bin/$PRGNAM
|
|
|
|
( cd $PKG$PREFIX/doc/$PRGNAM-$VERSION
|
2010-05-12 08:55:17 +02:00
|
|
|
ln -s ../libexec/$PRGNAM/readme.html
|
|
|
|
ln -s ../libexec/$PRGNAM/license.txt
|
2009-11-14 12:48:50 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# packaging
|
|
|
|
cd $PKG
|
|
|
|
mkdir install
|
|
|
|
cat <<EOF > install/slack-desc
|
|
|
|
$PRGNAM: $PRGNAM (A practical stack language)
|
2019-02-27 16:17:20 +01:00
|
|
|
$PRGNAM:
|
2009-11-14 12:48:50 +01:00
|
|
|
$PRGNAM: Factor is expressive, fast, supports interactive development and has a
|
|
|
|
$PRGNAM: full-featured library. Factor runs on all common platforms and Factor
|
|
|
|
$PRGNAM: applications are portable between them. Factor can deploy stand-alone
|
|
|
|
$PRGNAM: applications on all platforms.
|
2019-02-27 16:17:20 +01:00
|
|
|
$PRGNAM:
|
2009-11-14 12:48:50 +01:00
|
|
|
$PRGNAM: see $PREFIX/doc/$PRGNAM-$VERSION
|
2019-02-27 16:17:20 +01:00
|
|
|
$PRGNAM:
|
2009-11-14 12:48:50 +01:00
|
|
|
$PRGNAM: http://factorcode.org/
|
2019-02-27 16:17:20 +01:00
|
|
|
$PRGNAM:
|
2009-11-14 12:48:50 +01:00
|
|
|
EOF
|
|
|
|
|
2018-04-20 23:02:35 +02:00
|
|
|
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
2020-07-12 09:22:26 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz
|