mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:47:14 +08:00
33 lines
713 B
Bash
33 lines
713 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=libupnp
|
|
pkgver=1.6.15
|
|
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=('1b21e5b5fb6185101c467aefd19f0bf7')
|
|
|
|
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
|
|
}
|