wok diff joe/receipt @ rev 23179
updated mgetty and mgetty-voicetools (1.1.37 -> 1.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 19 13:45:58 2020 +0100 (2020-03-19) |
parents | 5d53e8ccbc8d |
children | 6bab837a85ec |
line diff
1.1 --- a/joe/receipt Thu Jan 08 02:04:05 2015 +0200 1.2 +++ b/joe/receipt Thu Mar 19 13:45:58 2020 +0100 1.3 @@ -1,33 +1,37 @@ 1.4 #Slitaz package receipt 1.5 1.6 PACKAGE="joe" 1.7 -VERSION="3.7" 1.8 +VERSION="4.6" 1.9 CATEGORY="utilities" 1.10 -SHORT_DESC="Joe's Own Editor is a fully featured terminal based screen editor" 1.11 +TAGS="text-editor" 1.12 +SHORT_DESC="Joe's Own Editor is an easy to use text editor, supporting syntax highlighting and UTF-8." 1.13 MAINTAINER="threarth@yahoo.it" 1.14 LICENSE="GPL" 1.15 +WEB_SITE="https://joe-editor.sourceforge.io/" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://joe-editor.sourceforge.net/" 1.19 -WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz" 1.20 -TAGS="text-editor" 1.21 -HOST_ARCH="i486 arm" 1.22 +WGET_URL="$SF_MIRROR/joe-editor/$TARBALL" 1.23 1.24 DEPENDS="ncursesw" 1.25 BUILD_DEPENDS="ncursesw-dev" 1.26 +HOST_ARCH="i486 arm" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 - ./configure --sysconfdir=/etc \ 1.32 + ./configure \ 1.33 + --sysconfdir=/etc \ 1.34 $CONFIGURE_ARGS && 1.35 - make && make install 1.36 + make -j 1 && 1.37 + make install 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 mkdir -p $fs/usr/share 1.44 - cp -a $install/etc $fs 1.45 - cp -a $install/usr/bin $fs/usr 1.46 - cp -a $install/usr/share/joe $fs/usr/share 1.47 + 1.48 + cp -a $install/etc $fs 1.49 + cp -a $install/usr/bin $fs/usr 1.50 + cp -a $install/usr/share/joe $fs/usr/share 1.51 }