diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-10 17:04:41 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-10 17:21:58 +0000 |
commit | ce897ba8087b740268194a5b2161b65d2b365549 (patch) | |
tree | 2dd4227db9fd5c3645e23294c9143ff0e4f9121b /main/hicolor-icon-theme | |
parent | 74b55ad9ac26def0f4dd457d2fc5a62e12db8c32 (diff) | |
download | aports-ce897ba8087b740268194a5b2161b65d2b365549.tar.bz2 aports-ce897ba8087b740268194a5b2161b65d2b365549.tar.xz |
main/hicolor-icon-theme: upgrade to 0.12
Diffstat (limited to 'main/hicolor-icon-theme')
-rw-r--r-- | main/hicolor-icon-theme/APKBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/main/hicolor-icon-theme/APKBUILD b/main/hicolor-icon-theme/APKBUILD index afac779a02..17eb2982d7 100644 --- a/main/hicolor-icon-theme/APKBUILD +++ b/main/hicolor-icon-theme/APKBUILD @@ -1,20 +1,23 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hicolor-icon-theme -pkgver=0.10 +pkgver=0.12 pkgrel=0 pkgdesc="Freedesktop.org Hicolor icon theme" url="http://icon-theme.freedesktop.org/wiki/HicolorTheme" -arch="x86 x86_64" +arch="noarch" license="GPL2" depends="" makedepends="" source="http://icon-theme.freedesktop.org/releases/$pkgname-$pkgver.tar.gz" -build () -{ +build() { cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr || return 1 make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver make DESTDIR="$pkgdir" install || return 1 } -md5sums="3534f7b8e59785c7d5bfa923e85510a7 hicolor-icon-theme-0.10.tar.gz" +md5sums="55cafbcef8bcf7107f6d502149eb4d87 hicolor-icon-theme-0.12.tar.gz" |