wok-next diff kkedit/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | f48456621a9d |
children |
line diff
1.1 --- a/kkedit/receipt Tue Oct 16 16:46:05 2018 +0300 1.2 +++ b/kkedit/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -7,24 +7,23 @@ 1.4 MAINTAINER="al.bobylev@gmail.com" 1.5 LICENSE="GPL3" 1.6 WEB_SITE="http://keithhedger.hostingsiteforfree.com/pages/kkedit/help.html" 1.7 + 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WGET_URL="http://khapplications.darktech.org/zips/kkedit/KKEdit-$VERSION.tar.gz" 1.10 1.11 -DEPENDS="gtk2 gtksourceview libunique" 1.12 BUILD_DEPENDS="automake autoconf gtk2-dev gtksourceview-dev libunique-dev \ 1.13 ctags libxml2-dev libtool" 1.14 1.15 -# Rules to configure and make the package. 1.16 -compile_rules() 1.17 -{ 1.18 - ./configure --disable-docviewer --prefix=/usr --&& 1.19 +compile_rules() { 1.20 + ./configure \ 1.21 + --disable-docviewer \ 1.22 + --prefix=/usr \ 1.23 + --&& 1.24 make && 1.25 make install 1.26 } 1.27 1.28 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 -genpkg_rules() 1.30 -{ 1.31 +genpkg_rules() { 1.32 mkdir -p \ 1.33 $fs/usr/share/KKEdit \ 1.34 $fs/usr/share/applications \ 1.35 @@ -33,4 +32,5 @@ 1.36 cp -a $stuff/*.desktop $fs/usr/share/applications 1.37 cp -a $stuff/*.png $fs/usr/share/pixmaps 1.38 cp -a $install/usr/share/KKEdit/tools $fs/usr/share/KKEdit 1.39 + DEPENDS="gtk2 gtksourceview libunique" 1.40 }