]> git.sev.monster Git - aports.git/blame_incremental - testing/mympd/APKBUILD
mympd: update to 12.0.4
[aports.git] / testing / mympd / APKBUILD
... / ...
CommitLineData
1# Contributor: sev <alpine@sev.monster>
2# Maintainer: 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=12.0.4
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="
42ab3391c294b9ee7a82c61021d950241cd395ab851496407b0cc4556fb3f58c3d70299dca719f37ac0de7535b5aef5450c5663762d2e39281ee3a23db45f4c997 myMPD-12.0.4.tar.gz
43"
This page took 0.042555 seconds and 4 git commands to generate.