wok view jed/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents 5b41f39a1049
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="jed"
4 VERSION="0.99-19"
5 CATEGORY="development"
6 SHORT_DESC="JED text editor"
7 MAINTAINER="b1+slitaz@nagel.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.jedsoft.org/jed/"
11 WGET_URL="ftp://ftp.fu-berlin.de/pub/unix/editors/jed/v0.99/$TARBALL"
12 # ftp://space.mit.edu/pub/davis/jed/v0.99/$TARBALL"
13 TAGS="text-editor"
15 DEPENDS="slang"
16 BUILD_DEPENDS="slang-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 JED_ROOT=/usr/share/jed ./configure --prefix=/usr $CONFIGURE_ARGS
23 make &&
24 make -j1 DESTDIR=$DESTDIR install 2>&1 | grep -v xjed
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/jed
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/jed/lib $fs/usr/share/jed
33 }