blob: d930d5d38adffd714ef1e330683b5aa77d6dac5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Daniel Maslowski <info@orangecms.org>
pkgname=upplay-qt6-git
pkgver=1.6.1.r48.g398219b
pkgrel=1
pkgdesc="A Qt-based UPnP audio Control point"
url="https://www.lesbonscomptes.com/upplay/"
arch=(x86_64)
license=(GPL2)
depends=(libupnpp qt6-base qt6-webengine jsoncpp)
makedepends=(git qt6-tools)
provides=(upplay)
conflicts=(upplay)
source=("git+https://framagit.org/medoc92/upplay.git")
sha256sums=('SKIP')
pkgver() {
cd upplay
git describe --long --tags | sed 's/^UPPLAY_//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd upplay
qmake6 -o Makefile upplay.pro PREFIX=/usr
}
package() {
cd upplay
make install INSTALL_ROOT="${pkgdir}"
}
|