diff options
author | Daichi Shinozaki | 2015-06-09 18:17:31 +0900 |
---|---|---|
committer | Daichi Shinozaki | 2015-06-09 18:17:31 +0900 |
commit | 32af6c1e63cae8aae491a94e2b20b8bf56d5a32b (patch) | |
tree | 8a53b9e07e9e9bbb6720b1c98fb269bc5fd90ad7 | |
download | aur-32af6c1e63cae8aae491a94e2b20b8bf56d5a32b.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 15 | ||||
-rwxr-xr-x | PKGBUILD | 33 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..af0320a6ad6 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = ipbt + pkgdesc = A high-tech ttyrec player + pkgver = 20141026.2197432 + pkgrel = 1 + url = http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ + arch = i686 + arch = x86_64 + license = MIT + depends = ncurses + depends = perl + source = http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ipbt-20141026.2197432.tar.gz + md5sums = aee6263c862c102f12cab1ae544d75a9 + +pkgname = ipbt + diff --git a/PKGBUILD b/PKGBUILD new file mode 100755 index 00000000000..eb8e7524be1 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Shaw <puxx@mail.ustc.edu.cn> +# Contributor: Nick <iglu.sitar at gmail dot com> +# Contributor: Angus Gibson <darthshrine@gmail.com> + +pkgname=ipbt +pkgver=20141026.2197432 +pkgrel=1 +pkgdesc="A high-tech ttyrec player" +arch=('i686' 'x86_64') +url="http://www.chiark.greenend.org.uk/~sgtatham/ipbt/" +license=('MIT') +depends=('ncurses' 'perl') +source=("http://www.chiark.greenend.org.uk/~sgtatham/ipbt/$pkgname-$pkgver.tar.gz") +md5sums=('aee6263c862c102f12cab1ae544d75a9') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + # install executable files + install -Dm755 ipbt $pkgdir/usr/bin/ipbt + install -Dm755 ttydump $pkgdir/usr/bin/ttydump + install -Dm755 ttygrep $pkgdir/usr/bin/ttygrep + # install man page + install -Dm644 ipbt.1 $pkgdir/usr/share/man/man1/ipbt.1 + # install LICENCE + install -Dm644 LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENCE +} + |