mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
611 B
Bash
20 lines
611 B
Bash
# Contributor: Henrique C. Alves <hcarvalhoalves@gmail.com>
|
|
|
|
pkgname=matchbox-common
|
|
pkgver=0.9.1
|
|
pkgrel=4
|
|
pkgdesc="A package containing shared icons and configuration data"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('libmatchbox' 'matchbox-window-manager' 'matchbox-desktop' 'matchbox-panel')
|
|
url="http://projects.o-hand.com/matchbox"
|
|
source=(http://projects.o-hand.com/matchbox/sources/$pkgname/0.9/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('8e8ba0ee170a9ac78fdc583b00ccf76b')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|