wok annotate kkedit/receipt @ rev 21150

updated libbsd and libbsd-dev (0.6.0 -> 0.9.1)
author Hans-G?nter Theisgen
date Sat Mar 30 10:57:18 2019 +0100 (2019-03-30)
parents 2b9f96603415
children 8296cfe551a1
rev   line source
al@14427 1 # SliTaz package receipt.
al@14427 2
al@14427 3 PACKAGE="kkedit"
psychomaniak@18537 4 VERSION="0.2.11"
al@14427 5 CATEGORY="development"
al@14427 6 SHORT_DESC="Source code text editor"
al@14427 7 MAINTAINER="al.bobylev@gmail.com"
pascal@14999 8 LICENSE="GPL3"
al@14427 9 WEB_SITE="http://keithhedger.hostingsiteforfree.com/pages/kkedit/help.html"
al@14427 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
psychomaniak@18537 11 WGET_URL="http://khapplications.darktech.org/zips/kkedit/KKEdit-$VERSION.tar.gz"
al@14427 12
al@14427 13 DEPENDS="gtk+ gtksourceview libunique"
al@14427 14 BUILD_DEPENDS="automake autoconf gtk+-dev gtksourceview-dev libunique-dev \
psychomaniak@18537 15 ctags libxml2-dev libtool"
al@14427 16
al@14427 17 # Rules to configure and make the package.
al@14427 18 compile_rules()
al@14427 19 {
psychomaniak@18537 20 ./configure --disable-docviewer --prefix=/usr --&&
al@14427 21 make &&
al@14427 22 make install
al@14427 23 }
al@14427 24
al@14427 25 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14427 26 genpkg_rules()
al@14427 27 {
al@14427 28 mkdir -p \
al@14427 29 $fs/usr/share/KKEdit \
al@14427 30 $fs/usr/share/applications \
al@14427 31 $fs/usr/share/pixmaps
al@14427 32 cp -a $install/usr/bin $fs/usr
al@14427 33 cp -a $stuff/*.desktop $fs/usr/share/applications
al@14427 34 cp -a $stuff/*.png $fs/usr/share/pixmaps
al@14427 35 cp -a $install/usr/share/KKEdit/tools $fs/usr/share/KKEdit
al@14427 36 }