]> git.sev.monster Git - aports.git/blame - testing/mympd/APKBUILD
mympd: update to 12.0.4
[aports.git] / testing / mympd / APKBUILD
CommitLineData
1f285458 1# Contributor: sev <alpine@sev.monster>
2# Maintainer: sev <alpine@sev.monster>
19cf0960 3# Based on upstream APKBUILD
4# https://github.com/jcorporation/myMPD/blob/master/contrib/packaging/alpine/APKBUILD.in
1f285458 5pkgname=mympd
19cf0960 6pkgver=12.0.4
7pkgrel=0
2c34624f 8pkgdesc="myMPD is a standalone and mobile friendly web-based MPD client."
9url="https://jcorporation.github.io/myMPD/"
1f285458 10arch="all"
2c34624f 11license="GPL-3.0-or-later"
19cf0960 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"
41d3eac1 14install="$pkgname.pre-install"
19cf0960 15subpackages="$pkgname-doc $pkgname-openrc $pkgname-dbg"
16source="myMPD-$pkgver.tar.gz::https://github.com/jcorporation/myMPD/archive/refs/tags/v$pkgver.tar.gz"
1f285458 17builddir="$srcdir/myMPD-$pkgver"
18
19build() {
2c34624f 20 cd "$builddir" || exit 1
1f285458 21 ./build.sh release
22}
23
24check() {
fc35c1d1 25 cd "$builddir/release/bin" || exit 1
26 ./mympd -h >/dev/null 2>&1 || return 1
41d3eac1 27 if [ -x cli_tools/mympd-script ]; then
fc35c1d1 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
41d3eac1 31 [ $? -ne 1 ] && return 1
fc35c1d1 32 set -e
41d3eac1 33 fi
1f285458 34}
35
36package() {
37 cd "$builddir/release" || exit 1
2c34624f 38 DESTDIR="$pkgdir" make install
1f285458 39}
40
41sha512sums="
19cf0960 42ab3391c294b9ee7a82c61021d950241cd395ab851496407b0cc4556fb3f58c3d70299dca719f37ac0de7535b5aef5450c5663762d2e39281ee3a23db45f4c997 myMPD-12.0.4.tar.gz
1f285458 43"
This page took 0.042772 seconds and 4 git commands to generate.