mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
688 B
Bash
22 lines
688 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: Henrique C. Alves <hcarvalhoalves@gmail.com>
|
|
|
|
pkgname=libmatchbox
|
|
pkgver=1.9
|
|
pkgrel=2
|
|
pkgdesc="Base library for Matchbox WM"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('pango' 'libpng' 'libjpeg>=7' 'xsettings-client' 'libxext')
|
|
options=('!libtool')
|
|
url="http://projects.o-hand.com/matchbox"
|
|
source=(http://projects.o-hand.com/matchbox/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('9f73e7515cc4679171a5db180dc1343b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --enable-pango --enable-jpeg --enable-xsettings
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|