wok-6.x diff gdbm/receipt @ rev 21778
linld: fix strdup (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 11 14:55:02 2019 +0200 (2019-07-11) |
parents | e4cda1000ec7 |
children | 3e9a9990c985 |
line diff
1.1 --- a/gdbm/receipt Sun Mar 09 16:31:15 2014 +0100 1.2 +++ b/gdbm/receipt Thu Jul 11 14:55:02 2019 +0200 1.3 @@ -1,26 +1,28 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gdbm" 1.7 -VERSION="1.10" 1.8 +VERSION="1.18.1" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="GNU database indexing library." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL3" 1.13 +WEB_SITE="https://www.gnu.org/software/gdbm" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://www.gnu.org/software/gdbm" 1.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.18 -HOST_ARCH="i486 arm" 1.19 1.20 DEPENDS="" 1.21 BUILD_DEPENDS="" 1.22 +HOST_ARCH="i486 arm" 1.23 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 sed -i -e 's/BINOWN = bin/BINOWN = root/' \ 1.28 -e 's/BINGRP = bin/BINGRP = root/' Makefile.in 1.29 + 1.30 ./configure $CONFIGURE_ARGS && 1.31 - make && 1.32 + make -j 1 && 1.33 make INSTALL_ROOT=$DESTDIR install 1.34 } 1.35 1.36 @@ -30,4 +32,3 @@ 1.37 mkdir -p $fs/usr/lib 1.38 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.39 } 1.40 -