mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
676 B
Bash
22 lines
676 B
Bash
# $Id: PKGBUILD 37021 2009-04-30 00:13:19Z eric $
|
|
# Contributor: Eddie Lozon <almostlucky@attbi.com>
|
|
# Contributor: Aaron Griffin <aaron@archlinux.org>
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
|
|
pkgname=gtk-theme-switch
|
|
pkgver=1.0.1
|
|
pkgrel=3
|
|
pkgdesc="Gtk theme switcher"
|
|
arch=('i686' 'x86_64')
|
|
url="http://muhri.net/nav.php3?node=gts"
|
|
license=('GPL')
|
|
depends=('gtk')
|
|
source=(http://www.muhri.net/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('a1ce98489cbe410c5483e155e5834c46')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make || return 1
|
|
install -D -m755 switch $pkgdir/usr/bin/switch || return 1
|
|
install -D -m644 switch.1 $pkgdir/usr/share/man/man1/switch.1 || return 1
|
|
}
|