mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-05 07:52:26 +01:00
32 lines
985 B
Plaintext
32 lines
985 B
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=filelight
|
|
pkgver=19.12.0
|
|
pkgrel=0
|
|
arch="all"
|
|
url="https://kde.org/applications/utilities/filelight"
|
|
pkgdesc="An application to visualize the disk usage on your computer"
|
|
license="(GPL-2.0-only OR GPL-3.0-only) AND GFDL-1.2-only"
|
|
makedepends="extra-cmake-modules qt5-qtbase-dev kxmlgui-dev kio-dev ki18n-dev kdoctools-dev"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
make
|
|
}
|
|
|
|
check() {
|
|
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" make install
|
|
}
|
|
|
|
sha512sums="781fbdd34c0ba612ce18218751118df6ed6b09dea237d313b6f70974992463dfba2fc4d4365fe266d909adcff4ee91824b28d4c399b5bc8a8971df38cddb1ea7 filelight-19.12.0.tar.xz"
|