Added libupnp 1.6.14.

This commit is contained in:
Adrian Chaves Fernandez (Gallaecio) 2011-12-08 21:27:03 +00:00
parent 92cd899fe1
commit b72b2a4430
2 changed files with 72 additions and 0 deletions

41
libupnp/ChangeLog Normal file
View File

@ -0,0 +1,41 @@
2010-03-27 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.13-1 :
Upgraded.
2010-02-09 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.12-1 :
Upgraded.
2010-02-08 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.11-1 :
Upgraded.
2010-12-11 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.10-1 :
Upgraded.
2010-11-07 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.9-1 :
Upgraded.
2010-11-04 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.8-2 :
PKGBUILD fixed. Error and solution reported by Giuseppe Calà (gcala) <jiveaxe gmail.com>.
2010-10-21 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.8-1 :
Upgraded.
2010-10-04 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.6.7-1 :
Imported from Arch Linux's 'libupnp' package:
http://repos.archlinux.org/wsvn/packages/libupnp/trunk/PKGBUILD?rev=92959&peg=92959
Upgraded.

31
libupnp/PKGBUILD Normal file
View File

@ -0,0 +1,31 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=libupnp
pkgver=1.6.14
pkgrel=1
pkgdesc="Portable UPnP development kit."
arch=('i686' 'x86_64')
url="http://pupnp.sourceforge.net/"
license=('BSD')
depends=('glibc')
changelog=ChangeLog
source=(http://downloads.sourceforge.net/sourceforge/pupnp/$pkgname-$pkgver.tar.bz2)
md5sums=('a0497cf15b3e15f7e7ede88b3d04861b')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
# License:
install -Dm644 LICENSE $pkgdir/usr/share/licenses/custom/$pkgname/LICENSE
}