diff options
Diffstat (limited to 'libre/parabola-gnome')
-rw-r--r-- | libre/parabola-gnome/PKGBUILD | 31 | ||||
-rw-r--r-- | libre/parabola-gnome/parabola-gnome.install | 11 |
2 files changed, 42 insertions, 0 deletions
diff --git a/libre/parabola-gnome/PKGBUILD b/libre/parabola-gnome/PKGBUILD new file mode 100644 index 000000000..19eb60aa2 --- /dev/null +++ b/libre/parabola-gnome/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Drtan Samos <lashdu@drtan.twilightparadox.com> + +pkgname=parabola-gnome +pkgver=1.0.1 +pkgrel=3 +pkgdesc="The Parabola defaults for GNOME" +arch=('any') +url="https://parabolagnulinux.org" +license=('GPL3') +install=$pkgname.install +makedepends=('git') +depends=('dbus-glib' 'parabola-artwork>=1.0' 'parabola-artwork<1.1') +source=("git://projects.parabolagnulinux.org/packages/${pkgname}#tag=v${pkgver}") +sha256sums=('SKIP') + +package() { + cd "${srcdir}/${pkgname}" + + install -d ${pkgdir}/etc/dconf/db/gdm.d/ + install -m644 dconf/db/gdm.d/parabola "${pkgdir}/etc/dconf/db/gdm.d/$(date +%Y%m%d%H%M%S%N)" + + install -d ${pkgdir}/etc/dconf/db/local.d/ + install -m644 dconf/db/local.d/parabola "${pkgdir}/etc/dconf/db/local.d/$(date +%Y%m%d%H%M%S%N)" + + install -d ${pkgdir}/etc/dconf/profile/ + install -m644 dconf/profile/* "${pkgdir}/etc/dconf/profile/" + + install -d ${pkgdir}/usr/share/gnome-background-properties/ + install -m644 gnome-background-properties/parabola.xml "${pkgdir}/usr/share/gnome-background-properties/" +} + diff --git a/libre/parabola-gnome/parabola-gnome.install b/libre/parabola-gnome/parabola-gnome.install new file mode 100644 index 000000000..8fce17b2e --- /dev/null +++ b/libre/parabola-gnome/parabola-gnome.install @@ -0,0 +1,11 @@ +post_install() { + dconf update +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |