wok view jed/receipt @ rev 1699

Add: get-eclipse-pdt, get and install eclipse PDT
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Nov 13 00:04:59 2008 +0100 (2008-11-13)
parents 821a9fc5077b
children 67356fcbb83e
line source
1 # SliTaz package receipt.
3 PACKAGE="jed"
4 VERSION="0.99-18"
5 CATEGORY="development"
6 SHORT_DESC="JED text editor"
7 MAINTAINER="bill@nagel.org"
8 DEPENDS="slang"
9 BUILD_DEPENDS="slang-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.jedsoft.org/jed/"
12 WGET_URL="ftp://ftp.fu-berlin.de/pub/unix/editors/jed/v0.99/$TARBALL
13 ftp://space.mit.edu/pub/davis/jed/v0.99/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 JED_ROOT=/usr/share/jed ./configure --prefix=/usr $CONFIGURE_ARGS
20 make && \
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/jed
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/jed/lib $fs/usr/share/jed
30 strip -s $fs/usr/bin/*
31 }