diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/lxnm/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/lxnm/PKGBUILD')
-rw-r--r-- | community/lxnm/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/lxnm/PKGBUILD b/community/lxnm/PKGBUILD new file mode 100644 index 000000000..d44a06750 --- /dev/null +++ b/community/lxnm/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 90454 2013-05-12 16:50:48Z bluewind $ +# Maintainer: Florian Pritz <flo@xinu.at> +# Contributor: CainĂ£ Costa <cainan.costa@gmail.com> + +pkgname=lxnm +pkgver=0.2.2 +pkgrel=4 +pkgdesc="A Network Manager (Part of LXDE)" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://lxde.org" +depends=('glib2') +source=("http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sbindir=/usr/bin + make +} +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install +} + +md5sums=('2ee64e5fad4a27a522f1eb2da08dd46a') |