summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLlewelyn Trahaearn2018-08-10 19:05:42 -0700
committerLlewelyn Trahaearn2018-08-10 19:05:42 -0700
commit14d99097c06d886cf8d2758d2d1b1534cc8072db (patch)
tree9d3d86bc942616f55c6d646a580fd1db142bb4d1
parenteedf43da5cc6339db1070613cfaf88a49ab53fc7 (diff)
downloadaur-14d99097c06d886cf8d2758d2d1b1534cc8072db.tar.gz
Remove .install as this task is now performed by a pacman hook.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--gschemas.install20
3 files changed, 2 insertions, 24 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8bac19023893..309d15144555 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,6 @@ pkgbase = gnome-shell-extension-lockkeys-git
pkgver = r91.0bf0917
pkgrel = 1
url = https://github.com/kazysmaster/gnome-shell-extension-lockkeys
- install = gschemas.install
arch = any
license = GPL
makedepends = git
@@ -11,7 +10,7 @@ pkgbase = gnome-shell-extension-lockkeys-git
depends = hicolor-icon-theme
provides = gnome-shell-extension-lockkeys
conflicts = gnome-shell-extension-lockkeys
- source = gnome-shell-extension-lockkeys::git+https://github.com/kazysmaster/gnome-shell-extension-lockkeys.git
+ source = gnome-shell-extension-lockkeys::git+https://github.com/kazysmaster/gnome-shell-extension-lockkeys
sha512sums = SKIP
pkgname = gnome-shell-extension-lockkeys-git
diff --git a/PKGBUILD b/PKGBUILD
index 702dd7b7581a..7c640fa3b183 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,8 +13,7 @@ depends=('gnome-shell' 'hicolor-icon-theme')
makedepends=('git')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
-install="gschemas.install"
-source=("${pkgname%-*}::git+https://github.com/kazysmaster/gnome-shell-extension-lockkeys.git")
+source=("${pkgname%-*}::git+${url}")
sha512sums=('SKIP')
_branch=master
diff --git a/gschemas.install b/gschemas.install
deleted file mode 100644
index 61789e42d2c5..000000000000
--- a/gschemas.install
+++ /dev/null
@@ -1,20 +0,0 @@
-post_install() {
- glib-compile-schemas usr/share/glib-2.0/schemas/
- instructions
-}
-
-post_upgrade() {
- glib-compile-schemas usr/share/glib-2.0/schemas/
- instructions
-}
-
-post_remove() {
- glib-compile-schemas usr/share/glib-2.0/schemas/
-}
-
-instructions() {
- /bin/cat << EOF
-Don't forget to restart GNOME Shell ([Alt]+[F2], r) and to enable extension
-with gnome-tweak-tool.
-EOF
-}