diff options
author | ScrumpyJack <scrumpyjack@me.com> | 2015-09-14 08:51:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-15 10:39:53 +0200 |
commit | 0fe8c98556b35f9cc1760ac6b4d2b6539c61053e (patch) | |
tree | d360c605f99bf09d7a35146c59be4e4be58a19a1 /testing | |
parent | b5bfa02a4ad0fd55b74c417f0e471d09429efaff (diff) | |
download | aports-0fe8c98556b35f9cc1760ac6b4d2b6539c61053e.tar.bz2 aports-0fe8c98556b35f9cc1760ac6b4d2b6539c61053e.tar.xz |
testing/termrec: new aport
termrec is a program for recording "videos" of terminal output
http://angband.pl/termrec.html
Diffstat (limited to 'testing')
-rw-r--r-- | testing/termrec/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/termrec/APKBUILD b/testing/termrec/APKBUILD new file mode 100644 index 0000000000..2f26a58da6 --- /dev/null +++ b/testing/termrec/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: ScrumpyJack <scrumpyjack@me.com> +# Maintainer: +pkgname=termrec +pkgver=0.17 +pkgrel=0 +pkgdesc="termrec is a program for recording "videos" of terminal output" +url="http://angband.pl/termrec.html" +arch="all" +license="GPL" +depends="" +depends_dev="" +makedepends="zlib-dev" +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz" +options="libtool" + +_builddir=${srcdir}/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr + make || return 1 + } + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir/" install + } + +md5sums="4d0bc41411196a81157a72b68736a0f4 termrec-0.17.tar.xz" +sha256sums="62f02c245b36d9059aef91a70fa8daee7cd946f22eac2947a1204d7bf4e63473 termrec-0.17.tar.xz" +sha512sums="43b9649b9dfff0b01fc545a388b21341f40667b176b585c160a28efa6b2cde1ef1d60770423c5739d790d6ad2e53ee7f81ad0ab28545d595a442f94d10a52e58 termrec-0.17.tar.xz" |