diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/lxappearance-obconf/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/lxappearance-obconf/PKGBUILD')
-rw-r--r-- | community/lxappearance-obconf/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/lxappearance-obconf/PKGBUILD b/community/lxappearance-obconf/PKGBUILD new file mode 100644 index 000000000..92b47b7fb --- /dev/null +++ b/community/lxappearance-obconf/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 71868 2012-06-02 14:56:09Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> + +pkgname=lxappearance-obconf +pkgver=0.2.0 +pkgrel=1 +pkgdesc='A plugin for LXAppearance to configure Openbox' +arch=('i686' 'x86_64') +license=('GPL2') +url="http://lxde.org/" +groups=('lxde') +depends=('lxappearance' 'openbox') +makedepends=('intltool') +source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz) +md5sums=('8bf23c90febe6a655e0f86c80e44725d') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + |