mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
683 B
Bash
22 lines
683 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Alois Belaska <lloyd@centrum.cz>
|
||
|
|
||
|
pkgname=xsettings-client
|
||
|
pkgver=0.10
|
||
|
pkgrel=4
|
||
|
pkgdesc="Provides cross toolkit configuration settings such as theme parameters"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://projects.o-hand.com/matchbox/sources"
|
||
|
source=(http://projects.o-hand.com/matchbox/sources/optional-dependencies/Xsettings-client-$pkgver.tar.gz)
|
||
|
md5sums=('c14aa9db6c097e0306dac97fb7da1add')
|
||
|
options=('!libtool')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/Xsettings-client-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|