wok view jed/receipt @ rev 8617

Fix syntax error in xfburn.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Feb 14 15:52:23 2011 +0000 (2011-02-14)
parents 67356fcbb83e
children 02bbaa9d12ba
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"
14 TAGS="text-editor"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 JED_ROOT=/usr/share/jed ./configure --prefix=/usr $CONFIGURE_ARGS
21 make && \
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/jed
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/jed/lib $fs/usr/share/jed
31 strip -s $fs/usr/bin/*
32 }