wok view db/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 3212f89e747f
children 1a39a3d55d0e
line source
1 # SliTaz package receipt.
3 PACKAGE="db"
4 VERSION="6.2.23"
5 CATEGORY="misc"
6 SHORT_DESC="Berkeley database system."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.NC.tar.gz"
10 WEB_SITE="https://www.oracle.com/database/berkeley-db/db.html"
11 WGET_URL="http://download.oracle.com/berkeley-db/$TARBALL"
12 TAGS="database"
13 HOST_ARCH="i486 arm"
15 DEPENDS="glibc-base libdb"
16 BUILD_DEPENDS=""
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src/build_unix
22 ../dist/configure \
23 --enable-cxx \
24 --enable-compat185 \
25 --enable-dbm \
26 --disable-static \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }