# HG changeset patch # User Hans-G?nter Theisgen # Date 1552654480 -3600 # Node ID 215a6ab0a0791d196911554891c19c8b2f729a7b # Parent 575ce05d3ed242ac74a69c7aff2b2337e356a7f1 updated joe (3.7 -> 4.6) diff -r 575ce05d3ed2 -r 215a6ab0a079 joe/receipt --- a/joe/receipt Fri Mar 15 13:33:31 2019 +0100 +++ b/joe/receipt Fri Mar 15 13:54:40 2019 +0100 @@ -1,33 +1,37 @@ #Slitaz package receipt PACKAGE="joe" -VERSION="3.7" +VERSION="4.6" CATEGORY="utilities" -SHORT_DESC="Joe's Own Editor is a fully featured terminal based screen editor" +TAGS="text-editor" +SHORT_DESC="Joe's Own Editor is an easy to use text editor, supporting syntax highlighting and UTF-8." MAINTAINER="threarth@yahoo.it" LICENSE="GPL" +WEB_SITE="https://joe-editor.sourceforge.io/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://joe-editor.sourceforge.net/" -WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz" -TAGS="text-editor" -HOST_ARCH="i486 arm" +WGET_URL="$SF_MIRROR/joe-editor/$TARBALL" DEPENDS="ncursesw" BUILD_DEPENDS="ncursesw-dev" +HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { - ./configure --sysconfdir=/etc \ + ./configure \ + --sysconfdir=/etc \ $CONFIGURE_ARGS && - make && make install + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $install/etc $fs - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/joe $fs/usr/share + + cp -a $install/etc $fs + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/joe $fs/usr/share }