wok 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 | 51c6f8c526bb |
children | c6cc8c3a7585 |
files | scite/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scite/receipt Sun Feb 08 16:52:49 2009 +0000 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="scite" 1.7 +VERSION="1.77" 1.8 +SHORT_VERSION="177" 1.9 +CATEGORY="utilities" 1.10 +SHORT_DESC="A free editor with syntax highlighting and source code editing features." 1.11 +MAINTAINER="rcx@zoominternet.net" 1.12 +DEPENDS="gtk+" 1.13 +BUILD_DEPENDS="gtk+-dev" 1.14 +TARBALL="${PACKAGE}${SHORT_VERSION}.tgz" 1.15 +WEB_SITE="http://www.scintilla.org/" 1.16 +WGET_URL="$SF_MIRROR/scintilla/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + # Build scintilla 1.22 + cd scintilla/gtk 1.23 + make GTK2=1 prefix=/usr 1.24 + cd ../.. 1.25 + 1.26 + # Build SciTE 1.27 + cd scite/gtk 1.28 + make GTK2=1 prefix=/usr && 1.29 + make prefix=/usr DESTDIR=$src/_pkg install 1.30 +} 1.31 + 1.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.33 +genpkg_rules() 1.34 +{ 1.35 + cp -a $_pkg/usr $fs 1.36 +} 1.37 +