]> git.sev.monster Git - aports.git/blame - testing/mympd/APKBUILD
add package dir to gitignore, add mympd and keys
[aports.git] / testing / mympd / APKBUILD
CommitLineData
1f285458 1# Contributor: sev <alpine@sev.monster>
2# Maintainer: sev <alpine@sev.monster>
3pkgname=mympd
4pkgver=7.0.2
5pkgrel=1
6pkgdesc="myMPD is a standalone and mobile friendly web mpd client with a tiny footprint and advanced features."
7url="https://jcorporation.github.io"
8arch="all"
9license="GPL-2.0-or-later"
10depends="libid3tag flac openssl>=1.1.0 lua5.3 pcre"
11makedepends="cmake>=3.4 perl pcre-dev openssl-dev>=1.1.0 libid3tag-dev flac-dev lua5.3-dev"
12install="$pkgname.pre-install $pkgname.post-install"
13subpackages="$pkgname-doc $pkgname-openrc"
14source="myMPD-$pkgver.tar.gz::https://github.com/jcorporation/myMPD/archive/refs/tags/v$pkgver.tar.gz"
15builddir="$srcdir/myMPD-$pkgver"
16
17build() {
18 cd "$builddir"
19 ./build.sh release
20}
21
22check() {
23 cd "$builddir/release"
24 # mympd has no safe way to start without it doing something
25 [ -x mympd >/dev/null 2>&1 ] || return 1
26 # we want to check a specific exit code so we have to turn off errexit
27 set +e
28 for x in config script; do
29 ./cli_tools/mympd-$x -h >/dev/null 2>&1
30 [ $? -ne 1 ] && return 1
31 done
32 set -e
33}
34
35package() {
36 cd "$builddir/release" || exit 1
37 [ -z "${DESTDIR+x}" ] && DESTDIR=""
38 make DESTDIR="$pkgdir" install
39}
40
41sha512sums="
4298a7464c307797b5b3b3ab56a7dfc2bab47a366e4cc4c48c2239915a14152bd3d6946219ee634baf4a1d36ba92778393100e3e7a16054aa1f85381c34303bd3f myMPD-7.0.2.tar.gz
43"
This page took 0.072886 seconds and 4 git commands to generate.