]> git.sev.monster Git - aports.git/blame_incremental - testing/mympd/APKBUILD
*/*: update maintainer email
[aports.git] / testing / mympd / APKBUILD
... / ...
CommitLineData
1# Contributor: sev <sev+alpine@sev.monster>
2# Maintainer: sev <sev+alpine@sev.monster>
3# Based on upstream APKBUILD
4# https://github.com/jcorporation/myMPD/blob/master/contrib/packaging/alpine/APKBUILD.in
5pkgname=mympd
6pkgver=13.0.6
7pkgrel=0
8pkgdesc="myMPD is a standalone and mobile friendly web-based MPD client."
9url="https://jcorporation.github.io/myMPD/"
10arch="all"
11license="GPL-3.0-or-later"
12depends="libid3tag flac openssl>=1.1.0 lua5.4-libs pcre2"
13makedepends="cmake>=3.4 perl libid3tag-dev flac-dev openssl-dev>=1.1.0 linux-headers lua5.4-dev pcre2-dev jq"
14install="$pkgname.pre-install"
15subpackages="$pkgname-doc $pkgname-openrc $pkgname-dbg"
16source="myMPD-$pkgver.tar.gz::https://github.com/jcorporation/myMPD/archive/refs/tags/v$pkgver.tar.gz"
17builddir="$srcdir/myMPD-$pkgver"
18
19build() {
20 cd "$builddir" || exit 1
21 ./build.sh release
22}
23
24check() {
25 cd "$builddir/release/bin" || exit 1
26 ./mympd -h >/dev/null 2>&1 || return 1
27 if [ -x cli_tools/mympd-script ]; then
28 # we want to check exit code so we have to turn off errexit
29 set +e
30 ./mympd-script -h >/dev/null 2>&1
31 [ $? -ne 1 ] && return 1
32 set -e
33 fi
34}
35
36package() {
37 cd "$builddir/release" || exit 1
38 DESTDIR="$pkgdir" make install
39}
40
41sha512sums="
42bb4c6b02b81e5b3ee4b0953ed4815faed74d8ab28c70c0228efa539771714d691b2955f8bf296e0e7e7785a1b8a50768e50a5c8a1bbfe358f25df70e380c30cf myMPD-13.0.6.tar.gz
43"
This page took 0.039421 seconds and 4 git commands to generate.