diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-22 21:23:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-22 21:24:55 +0000 |
commit | af85d5c969c957849cedcf02e869627a3298de25 (patch) | |
tree | 6df1b0891b5bfbd11211d329f88d3d5f0ef5bc31 | |
parent | db5cdbbc449e6893c59f4ad17fc802b6e1a5776d (diff) | |
download | aports-af85d5c969c957849cedcf02e869627a3298de25.tar.bz2 aports-af85d5c969c957849cedcf02e869627a3298de25.tar.xz |
x11/iceauth: upgrade to 1.0.3
-rw-r--r-- | x11/iceauth/APKBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/x11/iceauth/APKBUILD b/x11/iceauth/APKBUILD index f7126b0a..30da7ad0 100644 --- a/x11/iceauth/APKBUILD +++ b/x11/iceauth/APKBUILD @@ -1,21 +1,24 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=iceauth -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=0 pkgdesc="X.Org ICE authority file utility" url="http://xorg.freedesktop.org/" license="custom" subpackages="$pkgname-doc" -depends="libice uclibc" +depends= makedepends="pkgconfig libice-dev" -source="http://xorg.freedesktop.org//releases/individual/app/iceauth-1.0.2.tar.bz2" -build () -{ +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="7ab8b64edf0212a9d9a3c8129901a450 iceauth-1.0.2.tar.bz2" +md5sums="975ade3f238c1eb10705da0a91e6e8e7 iceauth-1.0.3.tar.bz2" |