wok view joe/receipt @ rev 21083

updated joe (3.7 -> 4.6)
author Hans-G?nter Theisgen
date Fri Mar 15 13:54:40 2019 +0100 (2019-03-15)
parents 5d53e8ccbc8d
children 6bab837a85ec
line source
1 #Slitaz package receipt
3 PACKAGE="joe"
4 VERSION="4.6"
5 CATEGORY="utilities"
6 TAGS="text-editor"
7 SHORT_DESC="Joe's Own Editor is an easy to use text editor, supporting syntax highlighting and UTF-8."
8 MAINTAINER="threarth@yahoo.it"
9 LICENSE="GPL"
10 WEB_SITE="https://joe-editor.sourceforge.io/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/joe-editor/$TARBALL"
15 DEPENDS="ncursesw"
16 BUILD_DEPENDS="ncursesw-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
34 cp -a $install/etc $fs
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/joe $fs/usr/share
37 }