mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
21 lines
648 B
Bash
21 lines
648 B
Bash
![]() |
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
||
|
|
||
|
pkgname=gtk-chtheme
|
||
|
pkgver=0.3.1
|
||
|
pkgrel=4
|
||
|
pkgdesc="This little program lets you change your Gtk+ 2.0 theme. A better alternative to switch2"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://plasmasturm.org/programs/gtk-chtheme/"
|
||
|
depends=('gtk2')
|
||
|
source=(http://plasmasturm.org/programs/gtk-chtheme/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('f688053bf26dd6c4f1cd0bf2ee33de2a')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
make || return 1
|
||
|
mkdir -p $startdir/pkg/usr/bin
|
||
|
install -m755 gtk-chtheme $startdir/pkg/usr/bin/ || return 1
|
||
|
}
|