mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:07:25 +08:00
32 lines
707 B
Bash
32 lines
707 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.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
|
|
}
|