mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: team/kde <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
pkgname=audiocd-kio
|
|
pkgver=24.08.1
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://www.kde.org/applications/multimedia/"
|
|
pkgdesc="Kioslave for accessing audio CDs"
|
|
license="GPL-2.0-or-later AND GFDL-1.2-only"
|
|
makedepends="
|
|
cdparanoia-dev
|
|
extra-cmake-modules
|
|
flac-dev
|
|
kcmutils-dev
|
|
kconfig-dev
|
|
kdoctools-dev
|
|
ki18n-dev
|
|
kio-dev
|
|
libkcddb-dev
|
|
libkcompactdisc-dev
|
|
libvorbis-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
_repo_url="https://invent.kde.org/multimedia/audiocd-kio.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/audiocd-kio-$pkgver.tar.xz"
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
285a4006c8f768558c10386e4cd3ca4c8855d609e790a4061dd35127b28253c3121b8e9edf7a93894eadad1b8c8d64e72723ffa57e9be3ef908606a307113932 audiocd-kio-24.08.1.tar.xz
|
|
"
|