chiark / gitweb /
vim: Update to lastest patch
[termux-packages] / packages / asciinema / build.sh
1 TERMUX_PKG_HOMEPAGE=https://asciinema.org/
2 TERMUX_PKG_DESCRIPTION="Record and share your terminal sessions, the right way"
3 TERMUX_PKG_VERSION=1.1.1
4 TERMUX_PKG_BUILD_REVISION=1
5 TERMUX_PKG_SRCURL=https://github.com/asciinema/asciinema/archive/v${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_FOLDERNAME=asciinema-${TERMUX_PKG_VERSION}
7 TERMUX_PKG_BUILD_IN_SRC=yes
8
9 termux_step_make () {
10         termux_setup_golang
11         export GOPATH=$TERMUX_PKG_TMPDIR
12         cd $GOPATH
13         mkdir -p src/github.com/asciinema/asciinema/
14         cp -Rf $TERMUX_PKG_SRCDIR/* src/github.com/asciinema/asciinema/
15 }
16
17 termux_step_make_install () {
18         cd $GOPATH/src/github.com/asciinema/asciinema
19         PREFIX=$TERMUX_PREFIX make build
20         PREFIX=$TERMUX_PREFIX make install
21 }