diff options
author | root <root@rshg054.dnsready.net> | 2011-12-04 23:14:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-04 23:14:51 +0000 |
commit | 392d2d86b3657d90c3954a44dd6e3e5a4d12d455 (patch) | |
tree | a88c28d4a6652dd77a3557f0dab9f6c6bdda037e /community/lxappearance/PKGBUILD | |
parent | 851376cd7720e1f9b35e0a7c26bfd66399f0c4d3 (diff) |
Sun Dec 4 23:14:51 UTC 2011
Diffstat (limited to 'community/lxappearance/PKGBUILD')
-rw-r--r-- | community/lxappearance/PKGBUILD | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/community/lxappearance/PKGBUILD b/community/lxappearance/PKGBUILD index 48b02cb73..37bfd344a 100644 --- a/community/lxappearance/PKGBUILD +++ b/community/lxappearance/PKGBUILD @@ -1,9 +1,11 @@ -#$Id: PKGBUILD 56899 2011-10-16 07:36:44Z bpiotrowski $ -# Maintainer: Angel Velasquez <angvp@archlinux.org> +#$Id: PKGBUILD 60017 2011-12-03 08:38:35Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> +# Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> + pkgname=lxappearance pkgver=0.5.1 -pkgrel=2 +pkgrel=3 pkgdesc="GTK+ theme switcher of the LXDE Desktop (manages icons and fonts)" arch=('i686' 'x86_64') license=('GPL2') @@ -11,17 +13,22 @@ url="http://lxde.org/" groups=('lxde') depends=('gtk2' 'intltool') makedepends=('pkgconfig') -source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz) +source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz + gtk-3.0.patch) build() { cd "$srcdir/$pkgname-$pkgver" + + patch -Np0 -i ../gtk-3.0.patch ./configure --sysconfdir=/etc --prefix=/usr make } package() { cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } -md5sums=('34d157a7fe97ef0b93db8fab3f251e07') +md5sums=('34d157a7fe97ef0b93db8fab3f251e07' + '58fd450329972be03181c98e7287f3ae') |