mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
ea23b99c27
miniupnpc update to version 1.8
30 lines
684 B
Bash
30 lines
684 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=miniupnpc
|
|
pkgver=1.8
|
|
pkgrel=1
|
|
pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
|
|
arch=('x86_64')
|
|
url='http://miniupnp.free.fr'
|
|
license=('BSD')
|
|
depends=('sh')
|
|
categories=('network')
|
|
source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('065bf20a20ebe605c675b7a5aaef340a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make INSTALLPREFIX=$pkgdir/usr install
|
|
|
|
# License.
|
|
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|