wok rev 21248

updated liblouis and liblouis-dev (2.5.2-3 -> 3.9.0)
author Hans-G?nter Theisgen
date Thu Apr 11 16:33:20 2019 +0100 (2019-04-11)
parents e35f62cc61b6
children 9e985e6947f6
files liblouis-dev/receipt liblouis/receipt
line diff
     1.1 --- a/liblouis-dev/receipt	Thu Apr 11 17:27:15 2019 +0200
     1.2 +++ b/liblouis-dev/receipt	Thu Apr 11 16:33:20 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="liblouis-dev"
     1.7 -VERSION="2.5.2-3"
     1.8 +VERSION="3.9.0"
     1.9  CATEGORY="utilities"
    1.10  LICENSE="GPL3"
    1.11 -SHORT_DESC="Open-source braille translator and back-translator."
    1.12 +SHORT_DESC="Open-source braille translator and back-translator, development files."
    1.13  MAINTAINER="yuripourre@gmail.com"
    1.14  WEB_SITE="http://liblouis.org/"
    1.15 +
    1.16  WANTED="liblouis"
    1.17 -
    1.18  DEPENDS="liblouis pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib $fs/usr/include
    1.24 -	cp -a $install/usr/lib/*.la $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/include/* $fs/usr/include
    1.27 +
    1.28 +	cp -a $install/usr/lib/*.la		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30 +	cp -a $install/usr/include/*		$fs/usr/include
    1.31  }
     2.1 --- a/liblouis/receipt	Thu Apr 11 17:27:15 2019 +0200
     2.2 +++ b/liblouis/receipt	Thu Apr 11 16:33:20 2019 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="liblouis"
     2.7 -VERSION="2.5.2-3"
     2.8 +VERSION="3.9.0"
     2.9  CATEGORY="utilities"
    2.10  LICENSE="GPL3"
    2.11  SHORT_DESC="Open-source braille translator and back-translator."
    2.12  MAINTAINER="yuripourre@gmail.com"
    2.13 -TARBALL="$PACKAGE-${VERSION:0:5}.tar.gz"
    2.14  WEB_SITE="http://liblouis.org/"
    2.15 -WGET_URL="http://liblouis.googlecode.com/files/$TARBALL"
    2.16 +
    2.17 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    2.19  
    2.20  DEPENDS="glibc"
    2.21  BUILD_DEPENDS="python-dev"
    2.22 @@ -17,11 +18,11 @@
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26 -	./configure                    \
    2.27 -		--prefix=/usr          \
    2.28 -		--disable-static       \
    2.29 +	./configure			\
    2.30 +		--prefix=/usr		\
    2.31 +		--disable-static	\
    2.32  		$CONFIGURE_ARGS &&
    2.33 -	make &&
    2.34 +	make -j 1 &&
    2.35  	make DESTDIR=$DESTDIR install
    2.36  }
    2.37  
    2.38 @@ -29,7 +30,8 @@
    2.39  genpkg_rules()
    2.40  {
    2.41  	mkdir -p $fs/usr/lib
    2.42 -	cp -a $install/usr/bin $fs/usr
    2.43 -	cp -a $install/usr/share $fs/usr
    2.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.45 +
    2.46 +	cp -a $install/usr/bin		$fs/usr
    2.47 +	cp -a $install/usr/share	$fs/usr
    2.48 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.49  }