diff options
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') |