diff options
Diffstat (limited to 'main/iceauth/APKBUILD')
-rw-r--r-- | main/iceauth/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/main/iceauth/APKBUILD b/main/iceauth/APKBUILD new file mode 100644 index 000000000..30da7ad06 --- /dev/null +++ b/main/iceauth/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=iceauth +pkgver=1.0.3 +pkgrel=0 +pkgdesc="X.Org ICE authority file utility" +url="http://xorg.freedesktop.org/" +license="custom" +subpackages="$pkgname-doc" +depends= +makedepends="pkgconfig libice-dev" +source="http://xorg.freedesktop.org/releases/individual/app/iceauth-$pkgver.tar.bz2" +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + || return 1 + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="975ade3f238c1eb10705da0a91e6e8e7 iceauth-1.0.3.tar.bz2" |