diff options
author | root <root@rshg047.dnsready.net> | 2011-06-06 22:47:17 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-06 22:47:17 +0000 |
commit | 93a9cde1226d0c82849bc71ff4d481d3d2698dc1 (patch) | |
tree | 1f60e792a546a9484aec590ce687df8f0ec6c697 /social/miniupnpc | |
parent | c81b3455112a3b09a8341fc8c45a91bd92c15a12 (diff) |
Mon Jun 6 22:47:16 UTC 2011
Diffstat (limited to 'social/miniupnpc')
-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 +} |