mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
David Oberhollenzer
55463cf428
- crt-dev is a dependency of toolchain - basefiles is a dependency of toolchain - libstdc++ is (now also) a dependency of toolchain This commit removes direct build dependencies to the above and replacest them with dependencies to the toolchain package. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
29 lines
716 B
Text
Executable file
29 lines
716 B
Text
Executable file
VERSION="4.20.2"
|
|
SRCDIR="btrfs-progs-v${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs"
|
|
SHA256SUM="890f8b7e162f2bbfaa5c7b23e8b6f791fd3f325239a0510871fa4b45e4a80e7c"
|
|
DEPENDS="libuuid-dev libblkid-dev zlib-dev lzo-dev toolchain"
|
|
SUBPKG="btrfs-progs-dev btrfs-progs"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
cp -r ${1}/* ${PKGBUILDDIR}
|
|
|
|
run_configure "." --disable-documentation --disable-convert \
|
|
--disable-zstd --disable-backtrace --disable-python
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "btrfs-progs-v" "tar.xz"
|
|
}
|