mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
529 B
Bash
22 lines
529 B
Bash
|
# Contributor: Kritoke <kritoke@nospam.gmail.com>
|
||
|
|
||
|
pkgname=gtweakui
|
||
|
pkgver=0.4.0
|
||
|
pkgrel=2
|
||
|
pkgdesc="A collection of front ends to various gconf configurations."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://gtweakui.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=('libgnomeui')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/gTweakUI-$pkgver.tar.bz2)
|
||
|
md5sums=('9d4725ccf4a83da3f46106c3d0be6cc8')
|
||
|
|
||
|
build() {
|
||
|
|
||
|
cd $startdir/src/gTweakUI-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|