diff options
-rw-r--r-- | testing/nemo/APKBUILD | 5 | ||||
-rw-r--r-- | testing/nemo/nemo.post-deinstall | 6 | ||||
-rw-r--r-- | testing/nemo/nemo.post-install | 6 | ||||
-rw-r--r-- | testing/nemo/nemo.post-upgrade | 6 |
4 files changed, 21 insertions, 2 deletions
diff --git a/testing/nemo/APKBUILD b/testing/nemo/APKBUILD index 5c5df8e387..5385eacab4 100644 --- a/testing/nemo/APKBUILD +++ b/testing/nemo/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=nemo pkgver=2.0.8 -pkgrel=0 +pkgrel=1 pkgdesc="Cinnamon file manager (Nautilus fork)" url="https://github.com/linuxmint/nemo" arch="all" @@ -11,7 +11,7 @@ depends="gnome-icon-theme" depends_dev="glib-dev gtk+3.0-dev gobject-introspection-dev dconf-dev libexif-dev cinnamon-desktop-dev libnotify-dev" makedepends="$depends_dev autoconf automake libtool gnome-common intltool gtk-doc" -install="" +install="$pkgname.post-install $pkgname.post-upgrade $pkgname.post-deinstall" subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver stop-gtk-stock-deprecated-errors-for-gtk-3.10.patch" @@ -38,6 +38,7 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --localstatedir=/var \ + --disable-update-mimedb \ --disable-schemas-compile \ --disable-gtk-doc-html \ || return 1 diff --git a/testing/nemo/nemo.post-deinstall b/testing/nemo/nemo.post-deinstall new file mode 100644 index 0000000000..772791e6f3 --- /dev/null +++ b/testing/nemo/nemo.post-deinstall @@ -0,0 +1,6 @@ +#!/bin/sh + +echo "Compiling glib schemas" + +/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + diff --git a/testing/nemo/nemo.post-install b/testing/nemo/nemo.post-install new file mode 100644 index 0000000000..772791e6f3 --- /dev/null +++ b/testing/nemo/nemo.post-install @@ -0,0 +1,6 @@ +#!/bin/sh + +echo "Compiling glib schemas" + +/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + diff --git a/testing/nemo/nemo.post-upgrade b/testing/nemo/nemo.post-upgrade new file mode 100644 index 0000000000..772791e6f3 --- /dev/null +++ b/testing/nemo/nemo.post-upgrade @@ -0,0 +1,6 @@ +#!/bin/sh + +echo "Compiling glib schemas" + +/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + |