summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore3
-rw-r--r--PKGBUILD27
3 files changed, 26 insertions, 17 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 21dd1ec42084..82ab9cb30102 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,16 @@
+# Generated by mksrcinfo v8
+# Fri Jan 15 00:11:44 UTC 2016
pkgbase = gnome-shell-frippery
pkgdesc = An unofficial extension pack providing GNOME2 like features for GNOME3.
- pkgver = 3.18.1
+ pkgver = 3.18.2
pkgrel = 1
- url = http://intgat.tigress.co.uk/rmy/extensions/index.html
+ url = http://frippery.org/extensions/index.html
arch = any
license = GPL2
- depends = gnome-shell
- source = http://frippery.org/extensions/gnome-shell-frippery-3.18.1.tgz
- sha256sums = b892ab6bfd4e727ee40ad5cfd41d4300e905fa948f1ba59f39e121d2c95f852f
+ depends = gnome-shell>=3.18
+ depends = gnome-shell<3.19
+ source = http://frippery.org/extensions/gnome-shell-frippery-3.18.2.tgz
+ sha256sums = e21a7074037beb4931d5e29adba9c8fbfc49bac6dc95c49a022ff9eb00789938
pkgname = gnome-shell-frippery
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..bde5de206962
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/src
+/pkg
+*.pkg*
diff --git a/PKGBUILD b/PKGBUILD
index 567c3ebeeba8..79d3b1441a1d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,25 @@
-#Maintainer: Maximilian Stein <theoddbird@posteo.org>
-#Contributor: H.Gökhan Sarı <th0th@returnfalse.net>
-#Contributor: Ramon Arriaga <ramon.arriaga@gmail.com>
+#
+# Maintainer: Iacopo Isimbaldi <isiachi@rhye.it>
+#
+# Contributor: Maximilian Stein <theoddbird@posteo.org>
+# Contributor: H.Gökhan Sarı <th0th@returnfalse.net>
+# Contributor: Ramon Arriaga <ramon.arriaga@gmail.com>
+#
pkgname=gnome-shell-frippery
-pkgver=3.18.1
+pkgver=3.18.2
pkgrel=1
pkgdesc="An unofficial extension pack providing GNOME2 like features for GNOME3."
arch=('any')
-url="http://intgat.tigress.co.uk/rmy/extensions/index.html"
+url="http://frippery.org/extensions/index.html"
license=('GPL2')
-depends=('gnome-shell')
+depends=('gnome-shell>=3.18' 'gnome-shell<3.19')
source=(http://frippery.org/extensions/$pkgname-$pkgver.tgz)
-sha256sums=('b892ab6bfd4e727ee40ad5cfd41d4300e905fa948f1ba59f39e121d2c95f852f')
+sha256sums=('e21a7074037beb4931d5e29adba9c8fbfc49bac6dc95c49a022ff9eb00789938')
package() {
-cd "$srcdir/"
-mv ".local" "usr"
-rm -rf "usr/share/gnome-shell/$pkgname"
-rm -rf ".local"
-cp -R "usr/" "$pkgdir/"
+ cd "$srcdir/"
+
+ rm -rf ".local/share/gnome-shell/$pkgname"
+ cp -R ".local" "$pkgdir/usr"
}