diff options
Diffstat (limited to 'community/lxappearance-obconf')
-rw-r--r-- | community/lxappearance-obconf/PKGBUILD | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/community/lxappearance-obconf/PKGBUILD b/community/lxappearance-obconf/PKGBUILD index c202ac5f8..42bd6bdd0 100644 --- a/community/lxappearance-obconf/PKGBUILD +++ b/community/lxappearance-obconf/PKGBUILD @@ -1,38 +1,26 @@ -# $Id: PKGBUILD 96676 2013-09-03 01:00:14Z bgyorgy $ +# $Id: PKGBUILD 99903 2013-10-31 02:22:59Z allan $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> pkgname=lxappearance-obconf -pkgver=0.2.0 -pkgrel=2 -pkgdesc='A plugin for LXAppearance to configure Openbox' +pkgver=0.2.1 +pkgrel=1 +pkgdesc='Plugin for LXAppearance to configure Openbox' arch=('i686' 'x86_64' 'mips64el') license=('GPL2') -url="http://lxde.org/" +url='http://lxde.org/' groups=('lxde') depends=('lxappearance' 'openbox') makedepends=('intltool') -options=('!libtool') -source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz - obconf-rrbutton.patch) -md5sums=('8bf23c90febe6a655e0f86c80e44725d' - '73cd418ff8dc68a76538fc829d6260c7') - -prepare() { - cd $srcdir/$pkgname-$pkgver - - # Fix building with openbox-3.5.2 - patch -Np1 -i ../obconf-rrbutton.patch -} +source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz) +md5sums=('1f061c96e0c78a6476421ca294ac24aa') build() { - cd $srcdir/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } - package() { - cd $srcdir/$pkgname-$pkgver + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } - |