aports/testing/qt6ct/APKBUILD
2023-10-22 22:01:26 +00:00

32 lines
963 B
Plaintext

# Contributor: Alex Yam <alex@alexyam.com>
# Maintainer: Alex Yam <alex@alexyam.com>
pkgname=qt6ct
pkgver=0.9
pkgrel=0
pkgdesc="Qt6 configuration tool"
url="https://github.com/trialuser02/qt6ct/"
arch="all"
license="BSD-2-Clause"
options="!check" # no test suite
makedepends="cmake samurai qt6-qtbase-dev qt6-qttools-dev"
source="https://github.com/trialuser02/qt6ct/releases/download/$pkgver/qt6ct-$pkgver.tar.xz
find-lrelease.patch
"
build() {
cmake -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=MinSizeRel
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
sha512sums="
ea5242cc10d9d210e190dd442c72c9f75c6a13e50191ec164fc9772de0475ca39453f22b061cfe24e1face4d660159d491627b65f2637b5d611cfe5fb0ac228f qt6ct-0.9.tar.xz
92e419c9d7dfbc35de00b1f9cd453e62294a19b5d930ef745e7f03f28d1f858bac8fef5118b1fd6d3d1de758c7caab63e0a5e1a91c5bd537722edb579c01dec2 find-lrelease.patch
"