mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
1 KiB
Bash
39 lines
1 KiB
Bash
#$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>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - rebuild for libpng - remove when bumped upstream
|
|
|
|
plugrel=1
|
|
|
|
pkgname=lxappearance
|
|
pkgver=0.5.1
|
|
pkgrel=3.1
|
|
pkgdesc="GTK+ theme switcher of the LXDE Desktop (manages icons and fonts)"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://lxde.org/"
|
|
groups=('lxde')
|
|
depends=('gtk2' 'intltool')
|
|
makedepends=('pkgconfig')
|
|
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'
|
|
'58fd450329972be03181c98e7287f3ae')
|