diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-06 15:56:18 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-06 15:56:18 -0300 |
commit | 0b3c41bff8016fa806e65e41bc76a0e5ea7e11cd (patch) | |
tree | 8da7d74c2be0727f32f4d98c7779f8f2136b2739 /social | |
parent | cda85aa4f1dc3c6364300f1123b276f053cdb4f8 (diff) | |
download | abslibre-0b3c41bff8016fa806e65e41bc76a0e5ea7e11cd.tar.gz abslibre-0b3c41bff8016fa806e65e41bc76a0e5ea7e11cd.tar.bz2 abslibre-0b3c41bff8016fa806e65e41bc76a0e5ea7e11cd.zip |
miniupnpc-1.5-2
Diffstat (limited to 'social')
-rw-r--r-- | social/miniupnpc/PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/social/miniupnpc/PKGBUILD b/social/miniupnpc/PKGBUILD new file mode 100644 index 000000000..38f323a65 --- /dev/null +++ b/social/miniupnpc/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Florian Loitsch <archlinux@florian.loitsch.com> +pkgname=miniupnpc +pkgver=1.5 +pkgrel=2 +pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices" +arch=(i686 x86_64) +url="http://miniupnp.free.fr" +license=('BSD') +depends=('sh') +source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz") +md5sums=('0efa7498d27c82a56a0300b0c05c4f58') + +build() { + cd $srcdir/$pkgname-$pkgver + make || return 1 + make INSTALLPREFIX=$pkgdir/usr install || return 1 + install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |