diff options
Diffstat (limited to 'community/matchbox-desktop/PKGBUILD')
-rw-r--r-- | community/matchbox-desktop/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/matchbox-desktop/PKGBUILD b/community/matchbox-desktop/PKGBUILD new file mode 100644 index 000000000..5d2af790e --- /dev/null +++ b/community/matchbox-desktop/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 21413 2010-07-16 12:00:56Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Henrique C. Alves <hcarvalhoalves@gmail.com> + +pkgname=matchbox-desktop +pkgver=2.0 +pkgrel=2 +pkgdesc="A PDA style application launcher or 'item browser'." +arch=('i686' 'x86_64') +license=('GPL') +depends=('libmatchbox' 'startup-notification' 'libpng' 'gtk2') +url="http://projects.o-hand.com/matchbox" +options=('!libtool') +source=(http://projects.o-hand.com/matchbox/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) +md5sums=('b0a4a47130272e2adab4e9feb43a6c9c') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --sysconfdir=/etc --prefix=/usr --enable-startup-notification + make || return 1 + make DESTDIR=$pkgdir install +} |