~alpine/aports

testing/opustags: new aport v2 REJECTED

Alexey Yerin: 1
 testing/opustags: new aport

 1 files changed, 37 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3559/mbox | git am -3
Learn more about email & git

[PATCH v2] testing/opustags: new aport Export this patch

https://github.com/fmang/opustags
Opus tags editor
---
v1 -> v2:
* Remove libogg from depends as it's inferred by abuild
* Remove builddir="$pkgname-$pkgver" as it's the default
* Set -DCMAKE_BUILD_TYPE=None

 testing/opustags/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 testing/opustags/APKBUILD

diff --git a/testing/opustags/APKBUILD b/testing/opustags/APKBUILD
new file mode 100644
index 0000000000..f99aa7a0a4
--- /dev/null
+++ b/testing/opustags/APKBUILD
@@ -0,0 +1,37 @@
# Contributor: Alexey Yerin <yyp@disroot.org>
# Maintainer: Alexey Yerin <yyp@disroot.org>
pkgname=opustags
pkgver=1.6.0
pkgrel=0
pkgdesc="Ogg Opus tags editor"
url="https://github.com/fmang/opustags"
arch="all"
license="BSD-3-Clause"
depends=""
makedepends="cmake libogg-dev"
subpackages="$pkgname-doc"
source="
	$pkgname-$pkgver.tar.gz::https://github.com/fmang/opustags/archive/refs/tags/$pkgver.tar.gz
"
options="!check" # Contains no tests

build() {
	if [ "$CBUILD" != "$CHOST" ]; then
		CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
	fi
	cmake -B build \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DBUILD_SHARED_LIBS=True \
		-DCMAKE_BUILD_TYPE=None \
		$CMAKE_CROSSOPTS .
	cmake --build build
}

package() {
	DESTDIR="$pkgdir" cmake --install build
}

sha512sums="
aec5b28d533291ba3b85e4a42a4b5f95a8071214d8a4142cfcc8acd81495ef0abab21b0a52baf702b4d1525e60425b7925dd68ba23fa2d1644c06e6da87e0e0c  opustags-1.6.0.tar.gz
"
--
2.32.0