wok-current rev 24588
updated gdbm and gdbm-dev (1.18.1 -> 1.23)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Feb 28 15:06:59 2022 +0100 (2022-02-28) |
parents | 85ce080d4127 |
children | 2a12b1c5e240 |
files | gdbm-dev/receipt gdbm/description.txt gdbm/receipt |
line diff
1.1 --- a/gdbm-dev/receipt Mon Feb 28 14:51:19 2022 +0100 1.2 +++ b/gdbm-dev/receipt Mon Feb 28 15:06:59 2022 +0100 1.3 @@ -1,20 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gdbm-dev" 1.7 -VERSION="1.18.1" 1.8 +VERSION="1.23" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="GNU database indexing library development files." 1.11 +SHORT_DESC="GNU database indexing library - development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL3" 1.14 WEB_SITE="https://www.gnu.org/software/gdbm" 1.15 1.16 WANTED="gdbm" 1.17 + 1.18 HOST_ARCH="i486 arm" 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 1.24 - cp -a $install/usr/lib/*.a $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 + cook_copy_folders include 1.27 + cook_copy_files *.*a 1.28 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gdbm/description.txt Mon Feb 28 15:06:59 2022 +0100 2.3 @@ -0,0 +1,16 @@ 2.4 +GNU dbm (or GDBM, for short) is a library of database functions that 2.5 +use extensible hashing and work similar to the standard UNIX dbm. 2.6 +These routines are provided to a programmer needing to create and 2.7 +manipulate a hashed database. 2.8 + 2.9 +The basic use of GDBM is to store key and data pairs in a data file. 2.10 +Each key must be unique and each key is paired with only one data item. 2.11 + 2.12 +The library provides primitives for storing key and data pairs, 2.13 +searching and retrieving the data by its key and deleting a key along 2.14 +with its data. 2.15 +It also support sequential iteration over all key and data pairs in 2.16 +a database. 2.17 + 2.18 +For compatibility with programs using old UNIX dbm function, the package 2.19 +also provides traditional dbm and ndbm interfaces
3.1 --- a/gdbm/receipt Mon Feb 28 14:51:19 2022 +0100 3.2 +++ b/gdbm/receipt Mon Feb 28 15:06:59 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="gdbm" 3.7 -VERSION="1.18.1" 3.8 +VERSION="1.23" 3.9 CATEGORY="misc" 3.10 SHORT_DESC="GNU database indexing library." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 @@ -28,13 +28,12 @@ 3.13 -e 's/BINGRP = bin/BINGRP = root/' Makefile.in 3.14 3.15 ./configure $CONFIGURE_ARGS && 3.16 - make -j 1 && 3.17 - make INSTALL_ROOT=$DESTDIR install 3.18 + make && 3.19 + make install INSTALL_ROOT=$DESTDIR 3.20 } 3.21 3.22 # Rules to gen a SliTaz package suitable for Tazpkg. 3.23 genpkg_rules() 3.24 { 3.25 - mkdir -p $fs/usr/lib 3.26 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.27 + cook_copy_files *.so* 3.28 }