prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
44 lines
1.1 KiB
Text
Executable file
44 lines
1.1 KiB
Text
Executable file
app=e2fsprogs
|
|
version=1.45.3
|
|
build=2sml
|
|
homepage='http://e2fsprogs.sourceforge.net/'
|
|
download='https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.45.3/e2fsprogs-1.45.3.tar.xz'
|
|
desc="Utilities for working with ext 2, 3 and 4 filesystems"
|
|
requires="util-linux"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
for i in misc/fsck.c misc/mke2fs.c e2fsck/unix.c ; do
|
|
sed -i 's@sbin@bin@g' $i
|
|
done
|
|
|
|
ac_cv_path_mkdir="mkdir -p" \
|
|
CFLAGS="$CFLAGS -D_GNU_SOURCE -D__uint64_t=u_int64_t -fPIC" \
|
|
LDFLAGS="-L/lib -static" \
|
|
./configure \
|
|
--prefix="" \
|
|
--with-root-prefix="" \
|
|
--sbindir=/bin \
|
|
--disable-nls \
|
|
--disable-libblkid \
|
|
--disable-libuuid \
|
|
--disable-uuidd
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
make DESTDIR=$pkg install-libs
|
|
|
|
cp NOTICE $pkgdocs/LICENSE
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
aaa6e1ef3bce5935cdca853a91ac596f41a62b5f16f7cd944b3ad572fe5890fce9d08335a46c6fefebeab99ec32b1ef6d2df94e6b7afc19f19d244f000605103 e2fsprogs-1.45.3.tar.lz
|
|
"
|