diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-27 00:06:09 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-27 00:06:09 -0300 |
commit | ff65dd795c751316666cd346720e743642ec6666 (patch) | |
tree | 2a71b8ea0d412f290311fc396e01d2b346da610d /community/gnome-colors | |
parent | 26c5a22c3cddc63bdfdc24ae694166da9e4e261b (diff) | |
download | aports-ff65dd795c751316666cd346720e743642ec6666.tar.bz2 aports-ff65dd795c751316666cd346720e743642ec6666.tar.xz |
community/gnome-colors: fix url fix license
Diffstat (limited to 'community/gnome-colors')
-rw-r--r-- | community/gnome-colors/APKBUILD | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/community/gnome-colors/APKBUILD b/community/gnome-colors/APKBUILD index da38037449..bcb4757cda 100644 --- a/community/gnome-colors/APKBUILD +++ b/community/gnome-colors/APKBUILD @@ -2,11 +2,11 @@ # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=gnome-colors pkgver=5.5.1 -pkgrel=1 +pkgrel=2 pkgdesc="gnome-colors icon themes meta package (all themes)" -url="https://code.google.com/p/gnome-colors/" +url="https://github.com/gnome-colors/gnome-colors" arch="noarch" -license="GPL-2.0" +license="GPL-2.0-only" subpackages="$pkgname-common gnome-brave-icon-theme:brave gnome-dust-icon-theme:dust @@ -23,15 +23,13 @@ depends="$pkgname-common gnome-brave-icon-theme gnome-dust-icon-theme gnome-huma # but github has no releases yet source="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gnome-colors/gnome-colors-$pkgver.tar.gz" -_builddir="$srcdir"/$pkgname-$pkgver prepare() { - mkdir $_builddir - ls -1 | egrep -v "$pkgver|.patch" | xargs -I{} mv {} $_builddir/ + mkdir $builddir + ls -1 | egrep -v "$pkgver|.patch" | xargs -I{} mv {} $builddir/ } package() { - cd "$_builddir" || return 1 find gnome* -name 'xchat*' | while read i; do ln -s "${i##*/}" "${i/xchat/hexchat}" || break done @@ -58,9 +56,9 @@ _app() { depends="$pkgname-common" fi - cd "$_builddir" + cd "$builddir" mkdir -p "$subpkgdir/usr/share/icons" - mv "gnome-$app" "$subpkgdir/usr/share/icons/" || return 1 + mv "gnome-$app" "$subpkgdir/usr/share/icons/" } brave() { _app brave 'brave*'; } @@ -72,6 +70,4 @@ noble() { _app noble 'noble*'; } wine() { _app wine 'wine*'; } wise() { _app wise 'wise*'; } -md5sums="8ec81b556bac351817bd56a1701dbbfb gnome-colors-5.5.1.tar.gz" -sha256sums="1e91d845a753eb38671e7614a786f852ab858a12983111e780da4a47c9debe58 gnome-colors-5.5.1.tar.gz" sha512sums="23d1fb9b96cd4287acc0f540c8a7abed1b9f16d7e2bc952beedc365cfd71a3a0134382a7f4bb1c01c62dc376acb6aaf81332167869ec6e8c036679e89d325ff3 gnome-colors-5.5.1.tar.gz" |