diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-28 09:34:15 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-28 09:34:55 +0000 |
commit | dc86d239fdc8802fde02a9d67951087ae19e5f14 (patch) | |
tree | bf40397b6d1ad6ca075192a69bb250fcfa940fad /unmaintained | |
parent | 53bd87458b9deb8a64931b7cc527cc886ce1038d (diff) | |
download | aports-dc86d239fdc8802fde02a9d67951087ae19e5f14.tar.bz2 aports-dc86d239fdc8802fde02a9d67951087ae19e5f14.tar.xz |
testing/emtpy: unmaintained
does not build with musl
Diffstat (limited to 'unmaintained')
-rw-r--r-- | unmaintained/empty/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/unmaintained/empty/APKBUILD b/unmaintained/empty/APKBUILD new file mode 100644 index 0000000000..3d9467ce01 --- /dev/null +++ b/unmaintained/empty/APKBUILD @@ -0,0 +1,33 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=empty +pkgver=0.6.19b +pkgrel=0 +pkgdesc="run applications under pseudo-terminal (PTY) sessions" +url="http://empty.sourceforge.net/" +arch="all" +license="BSD" +depends="" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/sourceforge/empty/empty-$pkgver.tgz" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" +} + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + install -D empty "$pkgdir"/usr/bin/empty + install -D empty.1 "$pkgdir"/usr/share/man/man1/empty.1 +} + +md5sums="a0729eb35dc607e463d86b681b8c1711 empty-0.6.19b.tgz" +sha256sums="05b7cb361ef815774abda325c09c573f8c9039ccbb71eedc743439e4637c314a empty-0.6.19b.tgz" +sha512sums="7afb2b5d08f2d3ebe0819eccef39b2e35fa532b6cbdcef49d2dbb4a5aa57fe55b1765461de9691d6eaa3188a9ecd98c291de738c13c9c2158c4f53d704b83670 empty-0.6.19b.tgz" |