wok annotate 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
rev   line source
pascal@2177 1 # SliTaz package receipt.
pascal@2177 2
pascal@2177 3 PACKAGE="scite"
pascal@2177 4 VERSION="1.77"
pascal@2177 5 SHORT_VERSION="177"
pascal@2177 6 CATEGORY="utilities"
pascal@2177 7 SHORT_DESC="A free editor with syntax highlighting and source code editing features."
pascal@2177 8 MAINTAINER="rcx@zoominternet.net"
pascal@2177 9 DEPENDS="gtk+"
pascal@2177 10 BUILD_DEPENDS="gtk+-dev"
pascal@2177 11 TARBALL="${PACKAGE}${SHORT_VERSION}.tgz"
pascal@2177 12 WEB_SITE="http://www.scintilla.org/"
pascal@2177 13 WGET_URL="$SF_MIRROR/scintilla/$TARBALL"
pascal@2177 14
pascal@2177 15 # Rules to configure and make the package.
pascal@2177 16 compile_rules()
pascal@2177 17 {
pascal@2177 18 # Build scintilla
pascal@2177 19 cd scintilla/gtk
pascal@2177 20 make GTK2=1 prefix=/usr
pascal@2177 21 cd ../..
pascal@2177 22
pascal@2177 23 # Build SciTE
pascal@2177 24 cd scite/gtk
pascal@2177 25 make GTK2=1 prefix=/usr &&
pascal@2177 26 make prefix=/usr DESTDIR=$src/_pkg install
pascal@2177 27 }
pascal@2177 28
pascal@2177 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2177 30 genpkg_rules()
pascal@2177 31 {
pascal@2177 32 cp -a $_pkg/usr $fs
pascal@2177 33 }
pascal@2177 34