summaryrefslogtreecommitdiff
path: root/community/muffin
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-01 00:06:30 -0800
committerroot <root@rshg054.dnsready.net>2013-02-01 00:06:30 -0800
commitedd3a17c9ed0cc3fa7fb62b4ad4178e064d46cda (patch)
treefb0363ba1ecdbf443cff57d7927ca13e8bd4e0e5 /community/muffin
parenta949895a0243a490d30fe355655c839fe217c580 (diff)
Fri Feb 1 00:06:30 PST 2013
Diffstat (limited to 'community/muffin')
-rw-r--r--community/muffin/PKGBUILD31
-rw-r--r--community/muffin/muffin.install21
2 files changed, 52 insertions, 0 deletions
diff --git a/community/muffin/PKGBUILD b/community/muffin/PKGBUILD
new file mode 100644
index 000000000..78c900e8f
--- /dev/null
+++ b/community/muffin/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 83411 2013-01-31 17:16:00Z bpiotrowski $
+
+pkgname=muffin
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/muffin"
+license=('GPL')
+depends=('clutter' 'gconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'libxxf86vm' 'startup-notification' 'zenity' 'dconf')
+makedepends=('libltdl' 'intltool' 'gnome-doc-utils' 'pkg-config')
+options=('!libtool' '!emptydirs')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver")
+
+build() {
+ cd linuxmint-muffin-*
+
+ autoreconf -vfi
+ PYTHON=python2 ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/muffin --localstatedir=/var --disable-static --disable-schemas-compile
+ make ${MAKEFLAGS}
+}
+
+package() {
+ cd linuxmint-muffin-*
+ make DESTDIR="$pkgdir/" install
+}
+
+md5sums=('0950fa5c00a165c7fed73b0898d072d5')
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/muffin/muffin.install b/community/muffin/muffin.install
new file mode 100644
index 000000000..c2e3c39c9
--- /dev/null
+++ b/community/muffin/muffin.install
@@ -0,0 +1,21 @@
+post_install() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+pre_upgrade() {
+ if [ -f /usr/share/gconf/schemas/muffin.schemas ]; then
+ /usr/sbin/gconfpkg --uninstall muffin
+ fi
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ pre_upgrade
+}
+
+post_remove() {
+ post_install
+}