mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
This makes it possible to provide armv7 as additional architecture in Alpine, next to armhf. See the discussion in this ML thread: <https://lists.alpinelinux.org/alpine-devel/6271.html> It's done by adding armv7 next to armhf in the arch line and also !armv7 where the arch line said !armhf. The following script was used:
30 lines
921 B
Plaintext
30 lines
921 B
Plaintext
# Contributor: Marvin Steadfast <marvin@xsteadfastx.org>
|
|
# Maintainer: Marvin Steadfast <marvin@xsteadfastx.org>
|
|
pkgname=upmpdcli
|
|
pkgver=1.2.16
|
|
pkgrel=0
|
|
pkgdesc="upmpdcli is a UPnP Media Renderer front-end for MPD, the Music Player Daemon"
|
|
url="http://www.lesbonscomptes.com/upmpdcli"
|
|
arch="all !armhf !armv7"
|
|
license="GPL-2.0"
|
|
options="!check"
|
|
depends=""
|
|
makedepends="libupnpp-dev libmpdclient-dev libmicrohttpd-dev jsoncpp-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="upmpdcli-$pkgver.tar.gz::http://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-$pkgver.tar.gz"
|
|
builddir="$srcdir/upmpdcli-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="1fd5b1939f7140f2e54401967308dd155e0f72406188b82e8ccc9178f5feeb0d37cfcd28dd220dd5437d06f49955cc83d70f0bb7c3659452ccb2e73f8846a226 upmpdcli-1.2.16.tar.gz"
|