blob: 8a093e6865fefb5d88cc3285e8af9a3771d1279e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $Id: PKGBUILD 59005 2011-11-20 19:53:19Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Henrique C. Alves <hcarvalhoalves@gmail.com>
pkgname=matchbox-window-manager
pkgver=1.2
pkgrel=2
pkgdesc="A pretty much unique X window manager with a classic PDA management policy"
arch=('i686' 'x86_64')
license=('GPL')
depends=('libmatchbox' 'startup-notification' 'libpng' 'libsm')
url="http://matchbox-project.org/"
source=(http://matchbox-project.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
md5sums=('3e158dcf57823b55c926d95b245500fb')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --sysconfdir=/etc --prefix=/usr \
--enable-startup-notification --enable-session \
--enable-alt-input-wins --enable-expat
make
make DESTDIR=$pkgdir install
}
|