wok view jed/receipt @ rev 3473

get-softmodem-driver: Add support for Smart Link modem
author Dominique Corbex <domcox@users.sourceforge.net>
date Tue Jun 16 21:41:05 2009 +0200 (2009-06-16)
parents 74c908326808
children 4466fa74bc06
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="b1+slitaz@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 }