katana/packaging/archlinux/katana-extraapps/PKGBUILD
FredBezies 03b643c3a8
Updated and cleaned up PKGBUILD.
Clean up effort, last part for now.

namcap output:

katana-extraapps W: Dependency included and not needed ('libgpod')
katana-extraapps W: Dependency included and not needed ('openconnect')
katana-extraapps W: Dependency included and not needed ('libofa')
katana-extraapps W: Dependency included and not needed ('speech-dispatcher')
katana-extraapps W: Dependency included and not needed ('liblastfm-qt4')
katana-extraapps W: Dependency included and not needed ('libmygpo-qt4')
katana-extraapps W: Dependency included and not needed ('freerdp')
katana-extraapps W: Dependency included and not needed ('eigen2')
2020-01-29 19:54:22 +01:00

56 lines
1.5 KiB
Bash

# $Id$
# Maintainer: Ivailo Monev <xakepa10@gmail.com>
# NOTE: eigen2 you can build from AUR
# TODO: split into small packages
# TODO: poppler-qt4
pkgname=katana-extraapps
pkgver=4.18.0.r547.6def6bb1
pkgrel=1
arch=('i486' 'i686' 'pentium4' 'x86_64' 'arm')
url='http://www.kde.org'
license=('GPL' 'LGPL' 'FDL')
groups=('katana')
pkgdesc='Katana extra applications'
url="http://fluxer.github.io/katana/"
depends=("katanalibs>=4.18.0" "katana-workspace>=4.18.0"
'taglib' 'sane' 'qjson' 'libvncserver'
'gettext' 'libgpod' 'libcanberra'
'openconnect' 'libmms' 'libofa' 'speech-dispatcher' 'liblastfm-qt4'
'libmygpo-qt4' 'freerdp' 'libspectre' 'eigen2' 'djvulibre' 'qca-qt4'
'qimageblitz')
makedepends=('cmake' 'git' 'boost')
optdepends=('samba: sharing files and directories'
'cronie: task scheduling')
source=("git+https://github.com/fluxer/kde-extraapps.git")
sha1sums=('SKIP')
conflicts=('kdeutils-ark' 'kdevelop' 'kdevplatform')
export CFLAGS="${CFLAGS} -flto" CXXFLAGS="${CXXFLAGS} -flto"
pkgver() {
cd kde-extraapps
printf "4.18.0."r%s.%s "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../kde-extraapps \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_TESTING=OFF \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DWITH_KATIE=OFF
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}