]> git.sev.monster Git - aports.git/blob - testing/mympd/APKBUILD
3a3fc2cce5ee41771670c10242d87e5fcbdd05c6
[aports.git] / testing / mympd / APKBUILD
1 # Contributor: sev <alpine@sev.monster>
2 # Maintainer: sev <alpine@sev.monster>
3 pkgname=mympd
4 pkgver=7.0.2
5 pkgrel=1
6 pkgdesc="myMPD is a standalone and mobile friendly web mpd client with a tiny footprint and advanced features."
7 url="https://jcorporation.github.io"
8 arch="all"
9 license="GPL-2.0-or-later"
10 depends="libid3tag flac openssl>=1.1.0 lua5.3 pcre"
11 makedepends="cmake>=3.4 perl pcre-dev openssl-dev>=1.1.0 libid3tag-dev flac-dev lua5.3-dev"
12 install="$pkgname.pre-install $pkgname.post-install"
13 subpackages="$pkgname-doc $pkgname-openrc"
14 source="myMPD-$pkgver.tar.gz::https://github.com/jcorporation/myMPD/archive/refs/tags/v$pkgver.tar.gz"
15 builddir="$srcdir/myMPD-$pkgver"
16
17 build() {
18         cd "$builddir"
19         ./build.sh release
20 }
21
22 check() {
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
35 package() {
36         cd "$builddir/release" || exit 1
37         [ -z "${DESTDIR+x}" ] && DESTDIR=""
38         make DESTDIR="$pkgdir" install
39 }
40
41 sha512sums="
42 98a7464c307797b5b3b3ab56a7dfc2bab47a366e4cc4c48c2239915a14152bd3d6946219ee634baf4a1d36ba92778393100e3e7a16054aa1f85381c34303bd3f  myMPD-7.0.2.tar.gz
43 "
This page took 0.026469 seconds and 2 git commands to generate.