wok view kate/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents
children 544e47246b33
line source
1 # SliTaz package receipt.
3 PACKAGE="kate"
4 VERSION="4.14.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Kde text editor"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.kde.org/"
11 WGET_URL="http://download.kde.org/stable/$VERSION/src/$TARBALL"
13 DEPENDS="kdelibs qt4 oxygen-icons"
14 BUILD_DEPENDS="cmake qmake automoc4 Qt4-dev kdelibs kdelibs-dev \
15 phonon phonon-dev docbook-xml docbook-xsl attica attica-dev strigi \
16 strigi-dev libdbusmenu-qt-dev dbus-dev polkit-qt-dev libQtDeclarative"
17 # kactivities shared-mime-info-dev
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 mkdir -p build && cd build
23 cmake \
24 -DCMAKE_BUILD_TYPE=Release \
25 -DCMAKE_INSTALL_PREFIX=/usr \
26 -Wno-dev .. &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/* $fs
34 rm -rf $fs/usr/include
35 }