PKGBUILDs/community/libupnp/PKGBUILD
2009-10-09 21:15:33 -05:00

23 lines
750 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com>
# Contributor: kastor <kastor@fobos.org.ar>
pkgname=libupnp
pkgver=1.6.6
pkgrel=2
pkgdesc="An SDK for development of UPnP device and control point applications for Linux."
url="http://pupnp.sourceforge.net/"
license=("BSD")
arch=('i686' 'x86_64')
options=('!libtool')
depends=('glibc')
source=("http://downloads.sourceforge.net/sourceforge/pupnp/${pkgname}-${pkgver}.tar.bz2")
md5sums=('8918dcf7428cd119d0c8275765ff2833')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/custom/$pkgname/LICENSE
}