mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
7204b9dd75
Automagically strip all executables (recursively for subdirectories in lib and bin) inside the mk.sh build loop. This removes the necessity in the build scripts to strip the files. This also allows us to remove the error prone install-strip target from the build scripts. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
33 lines
683 B
Text
Executable file
33 lines
683 B
Text
Executable file
VERSION="6.2.32"
|
|
SRCDIR="db-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
URL="http://download.oracle.com/berkeley-db/"
|
|
SHA256SUM="a9c5e2b004a5777aa03510cfe5cd766a4a3b777713406b02809c17c8e0e7a8fb"
|
|
DEPENDS="toolchain"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/dist/configure --prefix="" --host="$TARGET" --enable-compat185 \
|
|
--enable-dbm --disable-static --enable-cxx
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
make DESTDIR="$DEPLOY" install
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
|
|
chmod 755 ${DEPLOY}/bin/db_*
|
|
rm -r "$DEPLOY/docs"
|
|
}
|
|
|
|
check_update() {
|
|
# we need to login to access newer versions
|
|
# ... because Oracle, thats why!
|
|
return
|
|
}
|