2015-08-11 05:26:57 +08:00
|
|
|
# Include global configuration
|
|
|
|
|
|
|
|
pkgname=ark
|
|
|
|
arch=('x86_64')
|
2018-08-04 03:42:52 +08:00
|
|
|
pkgver=18.07.90
|
2016-05-13 04:57:22 +08:00
|
|
|
pkgrel=1
|
2015-08-11 05:26:57 +08:00
|
|
|
pkgdesc="Archiver for various compression formats"
|
|
|
|
url="http://www.kde.org"
|
2015-08-13 05:41:22 +08:00
|
|
|
license=(GPL)
|
2015-08-11 05:26:57 +08:00
|
|
|
options=('docs' 'debug')
|
2017-05-13 14:00:04 +08:00
|
|
|
depends=(kpty khtml libarchive hicolor-icon-theme kitemmodels libzip)
|
|
|
|
makedepends=(extra-cmake-modules kdoctools python3)
|
2016-03-30 02:29:36 +08:00
|
|
|
optdepends=("p7zip: 7Z format support"
|
|
|
|
"zip: ZIP format support"
|
|
|
|
"unzip: ZIP format support"
|
|
|
|
"unrar: RAR format support"
|
|
|
|
"lrzip: Lzop, lzip and lrz format support")
|
2015-08-13 05:41:22 +08:00
|
|
|
conflicts=(kdeutils-ark)
|
|
|
|
replaces=(kdeutils-ark)
|
2015-08-11 05:26:57 +08:00
|
|
|
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdeutils')
|
|
|
|
|
2018-07-24 04:59:22 +08:00
|
|
|
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
|
2018-08-04 03:42:52 +08:00
|
|
|
sha256sums=('d8798501df78475b461fd14977ac69bc8502c26e6ebe6351e450ad2d69659966'
|
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-08-11 05:26:57 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
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-08-11 05:26:57 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2015-11-11 06:58:55 +08:00
|
|
|
}
|