23 lines
456 B
Plaintext
23 lines
456 B
Plaintext
# Description: Portatif bir Açık Kaynak UPnP Geliştirme Seti.
|
||
# URL: http://pupnp.sourceforge.net/
|
||
# Packager: milisarge
|
||
# Depends on:
|
||
|
||
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
|
||
}
|