wok rev 24798
updated libhx and libhx-dev (3.24 -> 4.3)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 21 17:23:16 2022 +0100 (2022-03-21) |
parents | 5d7e045e355b |
children | e4556f37511f |
files | libhx-dev/receipt libhx/description.txt libhx/receipt |
line diff
1.1 --- a/libhx-dev/receipt Mon Mar 21 17:10:45 2022 +0100 1.2 +++ b/libhx-dev/receipt Mon Mar 21 17:23:16 2022 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libhx-dev" 1.7 -VERSION="3.24" 1.8 +VERSION="4.3" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Data structures and functions for scripting languages, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL3 LGPL2.1" 1.13 -WEB_SITE="http://libhx.sourceforge.net/" 1.14 +WEB_SITE="https://inai.de/projects/libhx/" 1.15 1.16 SOURCE="libHX" 1.17 DEPENDS="pkg-config" 1.18 @@ -15,9 +15,5 @@ 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/lib/*a $fs/usr/lib 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/include $fs/usr 1.27 + get_dev_files 1.28 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libhx/description.txt Mon Mar 21 17:23:16 2022 +0100 2.3 @@ -0,0 +1,12 @@ 2.4 +LibHX is a C library (with some C++ bindings available) that provides 2.5 +data structures and functions commonly needed, such as maps, deques, 2.6 +linked lists, string formatting and autoresizing, option and config 2.7 +file parsing, type checking casts and more. 2.8 + 2.9 +LibHX aids in quickly writing up C and C++ data processing programs, 2.10 +by consolidating tasks that often happen to be open-coded, such as 2.11 +(simple) config file reading, option parsing, directory traversal, 2.12 +and others, into a library. 2.13 +The focus is on reducing the amount of time (and secondarily, the 2.14 +amount of code) a developer has to spend for otherwise implementing 2.15 +such.
3.1 --- a/libhx/receipt Mon Mar 21 17:10:45 2022 +0100 3.2 +++ b/libhx/receipt Mon Mar 21 17:23:16 2022 +0100 3.3 @@ -1,19 +1,19 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libhx" 3.7 -VERSION="3.24" 3.8 +VERSION="4.3" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Data structures and functions for scripting languages." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 LICENSE="LGPL3 LGPL2.1" 3.13 -WEB_SITE="http://libhx.sourceforge.net/" 3.14 +WEB_SITE="https://inai.de/projects/libhx/" 3.15 3.16 SOURCE="libHX" 3.17 TARBALL="$SOURCE-$VERSION.tar.xz" 3.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.19 +WGET_URL="https://inai.de/files/$PACKAGE/$TARBALL" 3.20 3.21 -DEPENDS="coreutils-file-special" 3.22 -BUILD_DEPENDS="coreutils-file-special" 3.23 +DEPENDS="coreutils-file-special gcc83-lib-base" 3.24 +BUILD_DEPENDS="coreutils-file-special gcc83" 3.25 3.26 # What is the latest version available today? 3.27 current_version() 3.28 @@ -26,10 +26,12 @@ 3.29 compile_rules() 3.30 { 3.31 ./configure \ 3.32 + CC=gcc-83 \ 3.33 + CXX=g++-83 \ 3.34 --prefix=/usr \ 3.35 $CONFIGURE_ARGS && 3.36 make && 3.37 - make DESTDIR=$DESTDIR install 3.38 + make install DESTDIR=$DESTDIR 3.39 } 3.40 3.41 # Rules to gen a SliTaz package suitable for Tazpkg.