summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLlewelyn Trahaearn2018-08-10 18:44:20 -0700
committerLlewelyn Trahaearn2018-08-10 18:44:20 -0700
commit09fecfd39c34e2586b2991a4f5b00a00090ea1f5 (patch)
treed79676523c0dac42d161a0123221f3d2dccb0a3e
parent70f276f5195b5d315236aeca2547280fcd611379 (diff)
downloadaur-09fecfd39c34e2586b2991a4f5b00a00090ea1f5.tar.gz
Remove .install as this task is now performed by a pacman hook.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
-rw-r--r--gschemas.install19
3 files changed, 3 insertions, 24 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cd82fe141832..653000af6db6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = gnome-shell-extension-easyscreencast-git
pkgdesc = Provides a convienent top bar pop-down interface to configure the GNOME Shell Screencast Recording feature.
- pkgver = 1.0.0.r0.g314eda4
+ pkgver = 1.0.1.r0.gc2fe158
pkgrel = 1
url = https://github.com/EasyScreenCast/EasyScreenCast
- install = gschemas.install
arch = any
license = GPL3
makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index ff7a8e26d4cb..1e7174366772 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Llewelyn Trahaearn <WoefulDerelict [at] GMail [dot] com>
pkgname="gnome-shell-extension-easyscreencast-git"
-pkgver=1.0.0.r0.g314eda4
+pkgver=1.0.1.r0.gc2fe158
pkgrel=1
pkgdesc="Provides a convienent top bar pop-down interface to configure the GNOME Shell Screencast Recording feature."
arch=('any')
@@ -11,8 +11,7 @@ depends=('gnome-shell')
makedepends=('git')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}" 'gnome-shell-extensions-git')
-install="gschemas.install"
-source=("${pkgname}::git+https://github.com/EasyScreenCast/EasyScreenCast")
+source=("${pkgname}::git+${url}")
sha512sums=('SKIP')
_branch=master
diff --git a/gschemas.install b/gschemas.install
deleted file mode 100644
index 5d7550488b1d..000000000000
--- a/gschemas.install
+++ /dev/null
@@ -1,19 +0,0 @@
-post_install() {
- glib-compile-schemas usr/share/glib-2.0/schemas/
- instructions
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
-
-instructions() {
- /bin/cat << EOF
-Don't forget to restart GNOME Shell ([Alt]+[F2], r) and to enable extension
-with gnome-tweak-tool.
-EOF
-}