wok view gdbm/receipt @ rev 21177

code2: update website
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 01 19:27:16 2019 +0200 (2019-04-01)
parents e4cda1000ec7
children 3e9a9990c985
line source
1 # SliTaz package receipt.
3 PACKAGE="gdbm"
4 VERSION="1.18.1"
5 CATEGORY="misc"
6 SHORT_DESC="GNU database indexing library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gdbm"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i -e 's/BINOWN = bin/BINOWN = root/' \
22 -e 's/BINGRP = bin/BINGRP = root/' Makefile.in
24 ./configure $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make INSTALL_ROOT=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }