diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-06-26 13:46:11 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-26 14:36:10 -0300 |
commit | d73d8695ecb7bfc4efc928276e223439262d6816 (patch) | |
tree | 1b1ca5e65ca1c4fa4effe1286064d00b5a7d965c /testing | |
parent | d1cb84da1920d3cdf9ad296b1e55f6330a581940 (diff) | |
download | aports-d73d8695ecb7bfc4efc928276e223439262d6816.tar.bz2 aports-d73d8695ecb7bfc4efc928276e223439262d6816.tar.xz |
testing/numix-icon-theme: update and modernize
Diffstat (limited to 'testing')
-rw-r--r-- | testing/numix-icon-theme/APKBUILD | 36 |
1 files changed, 12 insertions, 24 deletions
diff --git a/testing/numix-icon-theme/APKBUILD b/testing/numix-icon-theme/APKBUILD index e0e151d71f..ac9f0540a6 100644 --- a/testing/numix-icon-theme/APKBUILD +++ b/testing/numix-icon-theme/APKBUILD @@ -1,40 +1,28 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=numix-icon-theme -pkgver=0_git20161019 +pkgver=0_git20190310 pkgrel=0 +_commit="88ba3654506c73f77a28629d863d1e23a553bff7" pkgdesc="Official icon theme from the Numix project" url="http://numixproject.org/" arch="noarch" -license="GPL-3.0" -depends="" -makedepends="" -install="" -subpackages="numix-light-icon-theme:numix_light" -options="!strip" -source="https://dev.alpinelinux.org/archive/$pkgname/$pkgname-$pkgver.tar.gz" -giturl="https://github.com/numixproject/numix-icon-theme.git" -disturl="dev.alpinelinux.org:/archive/$pkgname" - -builddir="$srcdir/numix-icon-theme-$pkgver" - -build() { - cd "$builddir" -} +license="GPL-3.0-only" +subpackages="$pkgname-light" +source="$pkgname-$_commit.tar.gz::https://github.com/numixproject/$pkgname/archive/$_commit.tar.gz" +options="!check" # No code so no tests +builddir="$srcdir/$pkgname-$_commit" package() { - cd "$builddir" mkdir -p "$pkgdir"/usr/share/icons - mv Numix "$pkgdir"/usr/share/icons/ + mv "$builddir"/Numix "$pkgdir"/usr/share/icons/ } -numix_light() { +light() { pkgdesc="$pkgdesc (Light version)" - cd "$builddir" + mkdir -p "$subpkgdir"/usr/share/icons - mv Numix-Light "$subpkgdir"/usr/share/icons/ + mv "$builddir"/Numix-Light "$subpkgdir"/usr/share/icons/ } -md5sums="4c65137928e46748b1f2e17b9a084539 numix-icon-theme-0_git20161019.tar.gz" -sha256sums="077acdfeb425adedd6c6a38075ff4b5cf9c8d5b8d5ad12f283ce77fa31c89282 numix-icon-theme-0_git20161019.tar.gz" -sha512sums="561aeff5d2a257709c2007847e41035d047bd857868311e09f2e4f26befd1d6b0516462d01e476b4ac2784f9ced1563b2c52590c68e638842d580c3e77c75e10 numix-icon-theme-0_git20161019.tar.gz" +sha512sums="221b808237da06a56329e9c496b9306fbb91334fc49582b05e9cf8adc3562988161e1785367e1d87085f4558f3db7c0aaf54278d4da924f76cf3ea874e57504d numix-icon-theme-88ba3654506c73f77a28629d863d1e23a553bff7.tar.gz" |