wok-4.x view scite/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents 8b731dd8536d
children 7f30061f1a50
line source
1 # SliTaz package receipt.
3 PACKAGE="scite"
4 VERSION="2.22"
5 SHORT_VERSION="222"
6 CATEGORY="utilities"
7 SHORT_DESC="Editor with syntax highlighting and source code editing features."
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS="gtk+ xorg-libXdamage gcc-lib-base"
10 BUILD_DEPENDS="gtk+-dev"
11 TARBALL="${PACKAGE}${SHORT_VERSION}.tgz"
12 WEB_SITE="http://www.scintilla.org/"
13 WGET_URL="$SF_MIRROR/scintilla/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 # Build scintilla
19 cd scintilla/gtk
20 make GTK2=1 prefix=/usr
21 cd ../..
23 # Build SciTE
24 cd scite/gtk
25 make GTK2=1 prefix=/usr &&
26 make prefix=/usr DESTDIR=$src/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/applications $fs/usr/share/pixmaps
33 cp -a $_pkg/usr $fs
34 # Desktop file and icon
35 cp $WOK/$PACKAGE/scite/gtk/SciTE.desktop $fs/usr/share/applications
36 cp $WOK/$PACKAGE/scite/gtk/Sci48M.png $fs/usr/share/pixmaps
37 # Save space ~100kb
38 rm $fs/usr/share/scite/*.html
39 rm $fs/usr/share/scite/*.png
40 }
42 clean_wok()
43 {
44 rm -rf scite scintilla
45 }