blob: 5695923ffce731a55d5008c8f5d90a2662a249d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $Id$
# Maintainer (Arch): Antonio Rojas <arojas@archlinux.org>
# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=ark
pkgver=15.08.3
pkgrel=2.parabola1
#pkgdesc='Archiving Tool, with unar support'
pkgdesc='Archiving Tool, without unrar recommendation'
arch=(i686 x86_64 armv7h)
url='http://kde.org/applications/utilities/ark/'
license=(GPL)
depends=(kpty khtml libarchive hicolor-icon-theme)
makedepends=(extra-cmake-modules kdoctools python)
#optdepends=(p7zip zip unzip unar)
optdepends=(p7zip zip unzip)
conflicts=(kdeutils-ark)
replaces=(kdeutils-ark)
groups=(kde-applications kdeutils)
install=$pkgname.install
source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz")
# 'ark-unar-06.patch')
md5sums=('84cd97d4147620b31956ccb35878aa2e')
# 'f38dc71e385e9242899cbe032a983d81')
prepare() {
mkdir -p build
# cd $pkgname-$pkgver
# # This patch will allow Ark to use The Unarchiver command line utilities (unar/lsar) to operate on RAR files, particularly RARv3.
# patch -Np1 -i ../ark-unar-07.patch
}
build() {
cd build
cmake ../$pkgname-$pkgver \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIB_INSTALL_DIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DBUILD_TESTING=OFF
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}
|