aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Maximiliano Marino2018-09-22 20:33:24 +0200
committerLucas Maximiliano Marino2018-09-22 20:33:24 +0200
commitb08bbdbedfe4ab1e7a9614cbf3a0dd029f80860c (patch)
tree702644c5264cc79bb8d8ea980c954649d48b819c
parent7a4423a164e9f848f0ab5ed37e70ba7aa89ab708 (diff)
downloadaur-b08bbdbedfe4ab1e7a9614cbf3a0dd029f80860c.tar.gz
Fixed thanks to Taijian.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fdd9e71f75a7..76fb10a48e42 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -5,11 +5,11 @@ pkgbase = flatplat-blue-theme
url = https://github.com/peterychuang/Flat-Plat-Blue
arch = any
license = GPL2
- depends = gtk3>=3.22
+ depends = gtk3>=3.18
depends = gtk-engine-murrine
depends = gnome-themes-standard
provides = flatplat-blue-theme
- source = Flat-Plat-Blue-3.28.1.tar.gz::https://github.com/peterychuang/Flat-Plat-Blue/archive/3.28.1.tar.gz
+ source = Flat-Plat-Blue-3.28.1::https://github.com/peterychuang/Flat-Plat-Blue/archive/3.28.1.tar.gz
sha256sums = f9b8e2b7350087891962e3dc694734e4f8742b83dc498ff8ee4c5dee03d84c3b
pkgname = flatplat-blue-theme
diff --git a/PKGBUILD b/PKGBUILD
index 0a361f3a5e28..50ca711340ae 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,16 +6,17 @@ pkgdesc="A Material Design-like flat theme for GTK3, GTK2, and GNOME-Shell."
arch=('any')
url="https://github.com/peterychuang/Flat-Plat-Blue"
license=('GPL2')
-depends=('gtk3>=3.22' 'gtk-engine-murrine' 'gnome-themes-standard')
+depends=('gtk3>=3.18' 'gtk-engine-murrine' 'gnome-themes-standard')
optdepends=()
provides=('flatplat-blue-theme')
conflicts=()
replaces=()
-source=(Flat-Plat-Blue-3.28.1.tar.gz::"https://github.com/peterychuang/Flat-Plat-Blue/archive/3.28.1.tar.gz")
+source=(Flat-Plat-Blue-$pkgver::"https://github.com/peterychuang/Flat-Plat-Blue/archive/$pkgver.tar.gz")
sha256sums=('f9b8e2b7350087891962e3dc694734e4f8742b83dc498ff8ee4c5dee03d84c3b')
package() {
- cd "${srcdir}/Flat-Plat-Blue-3.28.1"
- mkdir -p usr/share/themes
- destdir="${pkgdir}" ./install.sh -d usr/share/themes
+ cd "${srcdir}/Flat-Plat-Blue-$pkgver"
+ export destdir="$pkgdir/"
+ mkdir -p "${pkgdir}/usr/share/themes"
+ ./install.sh --dest "${pkgdir}/usr/share/themes"
}