diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-08-30 23:43:30 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-08-31 07:10:38 +0000 |
commit | 9aa835bd0505440594f88598e6c204c23bd9dca0 (patch) | |
tree | 86bdf0d83a4178b05691551ed2eff4d4decee32e /main | |
parent | 0149710592bb7ba2b2acb5874e07909a73df6ba3 (diff) | |
download | aports-9aa835bd0505440594f88598e6c204c23bd9dca0.tar.bz2 aports-9aa835bd0505440594f88598e6c204c23bd9dca0.tar.xz |
main/hicolor-icon-theme: upgrade to 0.16 and modernize
Diffstat (limited to 'main')
-rw-r--r-- | main/hicolor-icon-theme/APKBUILD | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/main/hicolor-icon-theme/APKBUILD b/main/hicolor-icon-theme/APKBUILD index 495a32253c..5752b146e3 100644 --- a/main/hicolor-icon-theme/APKBUILD +++ b/main/hicolor-icon-theme/APKBUILD @@ -1,29 +1,27 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hicolor-icon-theme -pkgver=0.15 +pkgver=0.16 pkgrel=0 pkgdesc="Freedesktop.org Hicolor icon theme" url="http://icon-theme.freedesktop.org/wiki/HicolorTheme" arch="noarch" license="GPL2" -depends="" -makedepends="" source="http://icon-theme.freedesktop.org/releases/$pkgname-$pkgver.tar.xz" +builddir="$srcdir/$pkgname-$pkgver" + build() { - cd "$srcdir"/$pkgname-$pkgver + cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - || return 1 - make || return 1 + --prefix=/usr + make } package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install || return 1 + cd "$builddir" + make DESTDIR="$pkgdir" install } -md5sums="6aa2b3993a883d85017c7cc0cfc0fb73 hicolor-icon-theme-0.15.tar.xz" -sha256sums="9cc45ac3318c31212ea2d8cb99e64020732393ee7630fa6c1810af5f987033cc hicolor-icon-theme-0.15.tar.xz" -sha512sums="4ae3cb1d2d1dfc219424d41ffd72323a44e5320117e5e88f81c1629964dd42ab2055c999d0c846f9d8834e7b922b5cec36481e8c82fede6a4e73faf3ac09bd20 hicolor-icon-theme-0.15.tar.xz" + +sha512sums="db883032c3c0375575e20127f100cda3fbd4ab7c90952bd555ce99318a5c233695bf8799ac08ef2617efeac3fcdee227e2ecdd3d8361db8240d68f088446877f hicolor-icon-theme-0.16.tar.xz" |