ae69000001
* arduino and antiword is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
22 lines
827 B
Bash
22 lines
827 B
Bash
# Template file for 'ark'
|
|
pkgname=ark
|
|
version=21.04.2
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson"
|
|
hostmakedepends="extra-cmake-modules qt5-devel qt5-qmake
|
|
kdoctools kconfig gettext pkg-config python3 kcoreaddons kparts"
|
|
makedepends="libarchive-devel kpty-devel kparts-devel kitemmodels-devel libzip-devel"
|
|
checkdepends="p7zip p7zip-unrar lzop lrzip unrar unzip zip zstd"
|
|
short_desc="KDE Archiving Tool"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://kde.org/applications/en/utilities/org.kde.ark"
|
|
distfiles="${KDE_SITE}/release-service/${version}/src/${pkgname}-${version}.tar.xz"
|
|
checksum=09e0294c36a881585183bf165020ef832bfbbd181547ea26eb78268aab46a768
|
|
|
|
do_check() {
|
|
cd build
|
|
# requires rar compressor
|
|
ctest -E plugins-clirartest
|
|
}
|