summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD17
2 files changed, 13 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ba1120f0ab3b..e25abf593b81 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = evopop-icon-theme
pkgdesc = Icon theme from Solus OS and Budgie Desktop
pkgver = 0.8
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/solus-cold-storage/evopop-icon-theme
arch = any
license = GPL
- source = https://github.com/solus-cold-storage/evopop-icon-theme/releases/download/0.8/EvoPop-0.8.tar.xz
- md5sums = bdea87c89ea45bcf32d8fd6b116f0b84
+ source = https://github.com/solus-cold-storage/evopop-icon-theme/archive/0.8.tar.gz
+ md5sums = d5e585c6ec6d9ec2292c146d2facbaab
pkgname = evopop-icon-theme
diff --git a/PKGBUILD b/PKGBUILD
index 6ff105b7bc3e..e6012a67d523 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,18 +7,21 @@ _gitname=evopop-icon-theme
pkgname=evopop-icon-theme
pkgbase=${pkgname}
pkgver=0.8
-pkgrel=2
+pkgrel=3
pkgdesc='Icon theme from Solus OS and Budgie Desktop'
arch=('any')
url="https://github.com/$_gituser/$_gitname"
license=('GPL')
-source=("https://github.com/$_gituser/$_gitname/releases/download/$pkgver/EvoPop-$pkgver.tar.xz")
-md5sums=('bdea87c89ea45bcf32d8fd6b116f0b84')
+source=("https://github.com/$_gituser/$_gitname/archive/$pkgver.tar.gz")
+md5sums=('d5e585c6ec6d9ec2292c146d2facbaab')
+
+
+
+
package() {
- cd "$srcdir/EvoPop-$pkgver/EvoPop"
+ cd "$srcdir/$_gitname-$pkgver"
DESTDIR="$pkgdir/usr/share/icons/"
- DIR=$(cat ./index.theme | grep -Po "(?<=Name=).*")
- mkdir -p $DESTDIR/$DIR
- cp -r * $DESTDIR/$DIR
+ mkdir -p "$DESTDIR"
+ cp -r EvoPop "$DESTDIR/"
}