2015-04-07 01:41:43 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdeutils-filelight/
|
2013-12-18 02:36:04 +08:00
|
|
|
# Include global configuration
|
2012-02-06 04:46:15 +08:00
|
|
|
|
2015-08-11 05:26:57 +08:00
|
|
|
pkgname=filelight
|
2012-11-18 23:55:21 +08:00
|
|
|
arch=('x86_64')
|
2018-06-18 00:14:15 +08:00
|
|
|
pkgver=18.04.2
|
2014-02-01 19:24:18 +08:00
|
|
|
pkgrel=1
|
2012-02-06 04:46:15 +08:00
|
|
|
url="http://www.kde.org"
|
2015-04-07 01:41:43 +08:00
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
2015-05-14 05:17:22 +08:00
|
|
|
options=('docs' 'debug')
|
2014-01-13 05:14:23 +08:00
|
|
|
pkgdesc="Creates a complex, but data-rich graphical representation of the files and directories on your computer"
|
2015-08-11 05:26:57 +08:00
|
|
|
depends=('kparts')
|
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
|
|
|
|
conflicts=('kdeutils-filelight')
|
|
|
|
replaces=('kdeutils-filelight')
|
|
|
|
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdeutils')
|
2012-03-06 17:59:48 +08:00
|
|
|
categories=('utils')
|
2018-06-18 00:14:15 +08:00
|
|
|
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
|
|
sha256sums=('c2bf1b4f529d38d4a8885217377771052b5a46502ad411dabf1b3f42b9fb1cc4'
|
2018-06-18 02:07:39 +08:00
|
|
|
'SKIP')
|
2018-06-18 00:14:15 +08:00
|
|
|
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
|
|
|
|
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
|
2015-04-07 01:41:43 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
2012-02-06 04:46:15 +08:00
|
|
|
|
|
|
|
build() {
|
2015-04-07 01:41:43 +08:00
|
|
|
cd build
|
2018-06-18 00:14:15 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DKDE_INSTALL_LIBDIR=lib \
|
|
|
|
-DKDE_INSTALL_SYSCONFDIR=/etc \
|
|
|
|
-DKDE_INSTALL_LIBEXECDIR=lib \
|
|
|
|
-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@"
|
2015-04-07 01:41:43 +08:00
|
|
|
make
|
|
|
|
}
|
2012-11-18 23:55:21 +08:00
|
|
|
|
2012-02-06 04:46:15 +08:00
|
|
|
package() {
|
2015-08-11 05:26:57 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2012-02-06 04:46:15 +08:00
|
|
|
}
|