2015-08-20 03:17:57 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://asciinema.org/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Record and share your terminal sessions, the right way"
|
2016-03-08 00:43:30 +01:00
|
|
|
TERMUX_PKG_VERSION=1.2.0
|
2015-08-20 03:17:57 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
|
|
TERMUX_PKG_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION}
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
|
|
|
|
|
|
termux_step_make () {
|
2016-01-11 01:45:41 +01:00
|
|
|
termux_setup_golang
|
2015-08-20 03:17:57 +02:00
|
|
|
export GOPATH=$TERMUX_PKG_TMPDIR
|
|
|
|
cd $GOPATH
|
|
|
|
mkdir -p src/github.com/asciinema/asciinema/
|
|
|
|
cp -Rf $TERMUX_PKG_SRCDIR/* src/github.com/asciinema/asciinema/
|
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_make_install () {
|
|
|
|
cd $GOPATH/src/github.com/asciinema/asciinema
|
|
|
|
PREFIX=$TERMUX_PREFIX make build
|
|
|
|
PREFIX=$TERMUX_PREFIX make install
|
2016-02-07 23:05:57 +01:00
|
|
|
|
2016-02-18 05:19:13 +01:00
|
|
|
mkdir -p $TERMUX_PREFIX/share/man/man1/
|
2016-02-07 23:05:57 +01:00
|
|
|
cp $TERMUX_PKG_SRCDIR/man/asciinema.1 $TERMUX_PREFIX/share/man/man1/
|
2015-08-20 03:17:57 +02:00
|
|
|
}
|