mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
648 B
Bash
22 lines
648 B
Bash
|
# Contributor: Henrique C. Alves <hcarvalhoalves@gmail.com>
|
||
|
|
||
|
pkgname=matchbox-desktop
|
||
|
pkgver=2.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A PDA style application launcher or 'item browser'."
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
depends=('libmatchbox' 'startup-notification' 'libpng')
|
||
|
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 $startdir/src/$pkgname-$pkgver
|
||
|
|
||
|
./configure --sysconfdir=/etc --prefix=/usr --enable-startup-notification
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|