mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
David Oberhollenzer
d2432c1d1e
- rewrite the rootfs_files.txt listings to the format used by pkg - create package files from each package - use "pkg install" to manage installation of packages and dependencies into the rootfs and initrd staging dirs Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
45 lines
1.1 KiB
Text
Executable file
45 lines
1.1 KiB
Text
Executable file
VERSION="1.0.6"
|
|
SRCDIR="bzip2-${VERSION}"
|
|
TARBALL="bzip2_${VERSION}.orig.tar.bz2"
|
|
URL="https://snapshot.debian.org/archive/debian/20111204T160411Z/pool/main/b/bzip2"
|
|
SHA256SUM="d70a9ccd8bdf47e302d96c69fecd54925f45d9c7b966bb4ef5f56b770960afa7"
|
|
DEPENDS="toolchain"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
cp -r ${1}/* ${PKGBUILDDIR}
|
|
|
|
local cflags="-O2 -Os"
|
|
local ldflags=""
|
|
|
|
if [ "x$TC_HARDENING" = "xyes" ]; then
|
|
cflags="$cflags -fstack-protector-all -fPIE -fPIC"
|
|
ldflags="$ldflags -z noexecstack -z relro -z now -fPIE -fPIC"
|
|
fi
|
|
|
|
make CFLAGS="-Wall -Winline -O2 -D_FILE_OFFSET_BITS=64 $cflags" \
|
|
LDFLAGS="$ldflags" CC=${TARGET}-gcc AR=${TARGET}-ar \
|
|
RANLIB=${TARGET}-ranlib -j $NUMJOBS libbz2.a bzip2 bzip2recover
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
make PREFIX="$DEPLOY" install
|
|
|
|
rm ${DEPLOY}/bin/{bzegrep,bzfgrep,bzless,bzcmp}
|
|
|
|
ln -s "/bin/bzgrep" "$DEPLOY/bin/bzegrep"
|
|
ln -s "/bin/bzgrep" "$DEPLOY/bin/bzfgrep"
|
|
ln -s "/bin/bzmore" "$DEPLOY/bin/bzless"
|
|
ln -s "/bin/bzdiff" "$DEPLOY/bin/bzcmp"
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$DEPLOY"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|