22 lines
438 B
Plaintext
22 lines
438 B
Plaintext
|
# Description: An Portable Open Source UPnP Development Kit.
|
||
|
# URL: http://pupnp.sourceforge.net/
|
||
|
# Packager: milisarge
|
||
|
|
||
|
name=libupnp
|
||
|
version=1.6.19
|
||
|
release=1
|
||
|
source=(http://downloads.sourceforge.net/project/pupnp/pupnp/libUPnP%20$version/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--mandir=/usr/man \
|
||
|
--disable-static \
|
||
|
--disable-dependency-tracking
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|