wok view kkedit/receipt @ rev 23497

updated python-ipy (0.63 -> 1.00)
author Hans-G?nter Theisgen
date Mon Apr 06 07:33:10 2020 +0100 (2020-04-06)
parents 5e709d3fb59d
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="kkedit"
4 VERSION="0.4.2"
5 CATEGORY="development"
6 SHORT_DESC="Source code text editor."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/KeithDHedger/KKEdit"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/$TARBALL"
14 SUGGESTED="aspell"
15 DEPENDS="gtk+ gtksourceview libunique"
16 BUILD_DEPENDS="aspell-dev autoconf automake ctags gtk+-dev
17 gtksourceview-dev libtool libunique-dev libxml2-dev vte-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-docviewer \
24 --prefix=/usr &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/KKEdit
33 mkdir -p $fs/usr/share/applications
34 mkdir -p $fs/usr/share/pixmaps
36 cp -a $install/usr/bin $fs/usr
37 cp -a $stuff/*.desktop $fs/usr/share/applications
38 cp -a $stuff/*.png $fs/usr/share/pixmaps
39 cp -a $install/usr/share/KKEdit/tools $fs/usr/share/KKEdit
40 }