diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:09:41 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:09:41 +0000 |
commit | 7fe35dd528f2661c77037187e014069689fa504f (patch) | |
tree | 6c45d12debf6da4c5b1cee78866b40eab436c244 /x11 | |
parent | 0cf28b3f21e699fed107490e6f23d60f594c8939 (diff) | |
download | aports-7fe35dd528f2661c77037187e014069689fa504f.tar.bz2 aports-7fe35dd528f2661c77037187e014069689fa504f.tar.xz |
x11/iceauth: new aport
X.Org ICE authority file utility
Diffstat (limited to 'x11')
-rw-r--r-- | x11/iceauth/APKBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/x11/iceauth/APKBUILD b/x11/iceauth/APKBUILD new file mode 100644 index 000000000..f7126b0a5 --- /dev/null +++ b/x11/iceauth/APKBUILD @@ -0,0 +1,21 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=iceauth +pkgver=1.0.2 +pkgrel=0 +pkgdesc="X.Org ICE authority file utility" +url="http://xorg.freedesktop.org/" +license="custom" +subpackages="$pkgname-doc" +depends="libice uclibc" +makedepends="pkgconfig libice-dev" +source="http://xorg.freedesktop.org//releases/individual/app/iceauth-1.0.2.tar.bz2" +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="7ab8b64edf0212a9d9a3c8129901a450 iceauth-1.0.2.tar.bz2" |