summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authornate2016-02-18 23:00:26 -0700
committernate2016-02-18 23:00:26 -0700
commit5385bc0e540c056749aadf91149e9e7b50e76230 (patch)
tree5226bb8de0aa3a178ee8fc426dab1d7de99f3fa0
parente43927cbeda1adbff1f18050d305e282ca08c2ef (diff)
downloadaur-5385bc0e540c056749aadf91149e9e7b50e76230.tar.gz
Added gsettings schema recompilation
-rw-r--r--PKGBUILD3
-rw-r--r--xed.install11
2 files changed, 13 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 6649fc56242f..dad922362162 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=xed-git
pkgver=1.0.3.r8.g057e2aa
pkgrel=1
-pkgdesc="git version - gtk3 gedit fork maintained by Linux Mint developers."
+pkgdesc="git version - gtk3 gedit fork. Maintained by Linux Mint developers."
arch=('i686' 'x86_64')
license=('GPL')
depends=('gtksourceview3' 'enchant' 'desktop-file-utils' 'libsm')
@@ -11,6 +11,7 @@ makedepends=('git' 'gnome-common' 'iso-codes')
provides=($_pkgname)
conflicts=('xed')
url='https://github.com/linuxmint/xed'
+install=xed.install
source=('xed-git::git+https://github.com/linuxmint/xed.git')
md5sums=('SKIP')
diff --git a/xed.install b/xed.install
new file mode 100644
index 000000000000..9f3f3955bc3f
--- /dev/null
+++ b/xed.install
@@ -0,0 +1,11 @@
+post_install(){
+ glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade(){
+ post_install
+}
+
+post_remove(){
+ post_install
+}