summaryrefslogtreecommitdiff
path: root/community/muffin/PKGBUILD
blob: cd001c143f67ac588e55f690f8ef6d12a3b239a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# $Id: PKGBUILD 83982 2013-02-07 22:09:51Z bgyorgy $
# Contributor: Adam Hani Schakaki <adam@schakaki.net>
# Contributor: Ner0

pkgname=muffin
pkgver=1.1.2
pkgrel=3
pkgdesc="Cinnamon window manager based on Mutter"
arch=('i686' 'x86_64')
url="https://github.com/linuxmint/muffin"
license=('GPL')
depends=('libsm' 'clutter' 'gobject-introspection' 'gsettings-desktop-schemas' \
		 'libcanberra' 'startup-notification' 'zenity' 'dconf')
makedepends=('intltool' 'gnome-doc-utils')
provides=('muffin-wm')
conflicts=('muffin-wm')
replaces=('muffin-wm')
options=('!libtool' '!emptydirs')
install=$pkgname.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver")
md5sums=('0950fa5c00a165c7fed73b0898d072d5')

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
}

package() {
  cd linuxmint-muffin-*
  make DESTDIR="$pkgdir/" install
}


# vim:set ts=2 sw=2 et: