wok view scite/receipt @ rev 2177

Add scite (thanks Matthew)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 08 16:52:49 2009 +0000 (2009-02-08)
parents
children 3e05ae8d5b2b
line source
1 # SliTaz package receipt.
3 PACKAGE="scite"
4 VERSION="1.77"
5 SHORT_VERSION="177"
6 CATEGORY="utilities"
7 SHORT_DESC="A free editor with syntax highlighting and source code editing features."
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS="gtk+"
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 cp -a $_pkg/usr $fs
33 }