mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
761 B
Bash
22 lines
761 B
Bash
# $Id: PKGBUILD 19005 2008-11-13 19:07:25Z thayer $
|
|
# Contributor: Eddie Lozon <almostlucky@attbi.com>
|
|
# Contributor: Jason Chu <jason@archlinux.org>
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
|
|
pkgname=gtk-theme-switch2
|
|
pkgver=2.0.5
|
|
pkgrel=1
|
|
pkgdesc="Gtk2 theme switcher"
|
|
url="http://muhri.net/nav.php3?node=gts"
|
|
license=('GPL2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('gtk2')
|
|
source=(http://ftp.de.debian.org/debian/pool/main/g/gtk-theme-switch/gtk-theme-switch_${pkgver}.tar.gz)
|
|
md5sums=('9775656eb1dab08c883fd0e3c23fc0a5')
|
|
|
|
build() {
|
|
cd ${startdir}/src/gtk-theme-switch-${pkgver}
|
|
make || return 1
|
|
install -D -m755 switch2 $startdir/pkg/usr/bin/switch2 || return 1
|
|
install -D -m644 switch.1 $startdir/pkg/usr/share/man/man1/switch2.1 || return 1
|
|
}
|