mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
26 lines
579 B
Bash
26 lines
579 B
Bash
# Support packages for Desktop
|
|
|
|
pkgname=herqq
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Herqq UPnP (HUPnP) is a software library for building UPnP devices"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.herqq.org/"
|
|
license=('GPL')
|
|
depends=('qt')
|
|
source=("http://downloads.sourceforge.net/sourceforge/hupnp/${pkgname}-${pkgver}.zip")
|
|
md5sums=('45a0632f7c7b64bc0fdab852d36c1e61')
|
|
replaces=("libhupnp-svn")
|
|
conflicts=("libhupnp-svn")
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}/
|
|
qmake PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
}
|