wok 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 575ce05d3ed2
children 5a01eb694834
files joe/receipt
line diff
     1.1 --- a/joe/receipt	Fri Mar 15 13:33:31 2019 +0100
     1.2 +++ b/joe/receipt	Fri Mar 15 13:54:40 2019 +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  }