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
32 lines
769 B
Text
Executable file
32 lines
769 B
Text
Executable file
app=initfs
|
|
version=0.1
|
|
build=1sml
|
|
homepage="http://git.pktsurf.in/smlinux/tree/base/initfs"
|
|
download="http://git.pktsurf.in/smlinux/tree/base/initfs"
|
|
desc="initfs - initial file system hierarchy creator"
|
|
requires="musl"
|
|
|
|
build() {
|
|
arch=noarch
|
|
mkandenterbuilddir
|
|
|
|
cd $pkg
|
|
tar xf $srcdir/$app.tar.lz
|
|
|
|
mv initfs/* .
|
|
rmdir initfs
|
|
|
|
mkdir -p install
|
|
chmod 1777 tmp
|
|
chmod 0700 root
|
|
|
|
cp $srcdir/doinst.sh install/
|
|
|
|
install -Dm 755 $srcdir/$app.SMBuild $pkg/doc/$app-$version/$app.SMBuild
|
|
/bin/makepkg -l n -c n $pkgdest/$app-$version-$arch-$build.$pkgext
|
|
[ "$?" = "0" ] && sm_pkgstatus=0
|
|
}
|
|
|
|
sha512sums="
|
|
85da0195b5e58c2b01f6ab91ed7a15ebff783325b08c5ed10722e6576974c1cedf55767eb30ccf58f41fc6c88171810ee63a0d7c7d09eb925c0572802d7754de initfs.tar.lz
|
|
"
|