wok diff libhx/receipt @ rev 23912

linux: add CONFIG_I2C_HID
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 16 10:22:39 2020 +0000 (2020-08-16)
parents 75937d22148a
children 65d7d867e0c1
line diff
     1.1 --- a/libhx/receipt	Mon Sep 28 12:02:13 2015 +0200
     1.2 +++ b/libhx/receipt	Sun Aug 16 10:22:39 2020 +0000
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libhx"
     1.7 -VERSION="3.21"
     1.8 +VERSION="3.24"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="data structures and functions for scripting languages."
    1.11 +SHORT_DESC="Data structures and functions for scripting languages."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="LGPL3 LGPL2.1"
    1.14 +WEB_SITE="http://libhx.sourceforge.net/"
    1.15 +
    1.16  SOURCE="libHX"
    1.17  TARBALL="$SOURCE-$VERSION.tar.xz"
    1.18 -WEB_SITE="http://$PACKAGE.sourceforge.net/"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20  
    1.21  DEPENDS="coreutils-file-special"
    1.22 @@ -17,7 +18,9 @@
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.27 +	./configure		\
    1.28 +		--prefix=/usr	\
    1.29 +		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install
    1.32  }
    1.33 @@ -26,5 +29,5 @@
    1.34  genpkg_rules()
    1.35  {
    1.36  	mkdir -p $fs/usr/lib
    1.37 -	cp -a $install/usr/lib/libHX.so* $fs/usr/lib
    1.38 +	cp -a $install/usr/lib/libHX.so*	$fs/usr/lib
    1.39  }