mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
592 B
Bash
20 lines
592 B
Bash
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
pkgname=lxappearance
|
|
pkgver=0.2
|
|
pkgrel=3
|
|
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')
|
|
makedepends=('pkgconfig')
|
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --sysconfdir=/etc --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums=('28e436c13ab09af54ffc6b415407ca37')
|