wok annotate gdbm/receipt @ rev 15953

arm: fix file cross compilation and add testsuite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 15:49:23 2014 +0100 (2014-02-23)
parents b7319995b37e
children e4cda1000ec7
rev   line source
pascal@1436 1 # SliTaz package receipt.
pascal@1436 2
pascal@1436 3 PACKAGE="gdbm"
devl547@11332 4 VERSION="1.10"
pascal@1436 5 CATEGORY="misc"
pascal@1436 6 SHORT_DESC="GNU database indexing library."
pascal@1436 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@1436 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1436 10 WEB_SITE="http://www.gnu.org/software/gdbm"
pascal@1436 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@1436 12
slaxemulator@10426 13 DEPENDS="glibc-base"
slaxemulator@10426 14 BUILD_DEPENDS="gcc"
slaxemulator@10426 15
pascal@1436 16 # Rules to configure and make the package.
pascal@1436 17 compile_rules()
pascal@1436 18 {
pascal@1436 19 cd $src
pascal@1436 20 sed -i -e 's/BINOWN = bin/BINOWN = root/' \
pascal@1436 21 -e 's/BINGRP = bin/BINGRP = root/' Makefile.in
gokhlayeh@11573 22 ./configure $CONFIGURE_ARGS &&
pascal@1436 23 make &&
gokhlayeh@8182 24 make INSTALL_ROOT=$DESTDIR install
pascal@1436 25 }
pascal@1436 26
pascal@1436 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1436 28 genpkg_rules()
pascal@1436 29 {
pascal@1436 30 mkdir -p $fs/usr/lib
pascal@14999 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1436 32 }
pascal@1436 33