diff options
Diffstat (limited to 'lxnm/PKGBUILD')
-rw-r--r-- | lxnm/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lxnm/PKGBUILD b/lxnm/PKGBUILD new file mode 100644 index 0000000..133f941 --- /dev/null +++ b/lxnm/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Florian Pritz <f-p@gmx.at> +# Contributor: CainĂ£ Costa <cainan.costa@gmail.com> +pkgname=lxnm +pkgver=0.2.2 +pkgrel=2 +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") +md5sums=('2ee64e5fad4a27a522f1eb2da08dd46a') + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr + make + make DESTDIR=$pkgdir/ install +} |