mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 08:55:20 +02:00
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
maintainer="Bart Ribbers <bribbers@disroot.org>"
|
|
pkgname=isoimagewriter
|
|
pkgver=25.04.0
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://community.kde.org/ISOImageWriter"
|
|
pkgdesc="A program to write hybrid ISO files onto a USB disk"
|
|
license="GPL-3.0-only"
|
|
makedepends="
|
|
eudev-dev
|
|
extra-cmake-modules
|
|
gpgme-dev
|
|
kauth-dev
|
|
kcoreaddons-dev
|
|
kcrash-dev
|
|
ki18n-dev
|
|
kiconthemes-dev
|
|
kwidgetsaddons-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
solid-dev
|
|
"
|
|
subpackages="$pkgname-lang"
|
|
_repo_url="https://invent.kde.org/utilities/isoimagewriter.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/isoimagewriter-$pkgver.tar.xz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
c73e63540dcea7aee70f164f5290742f19c62bc0d63b767c84cf9f58d747d161ba57d0cd0fa054618d7d94aeb50d9078d630aaae3f1636060e1ec4e8b8b5866d isoimagewriter-25.04.0.tar.xz
|
|
"
|