pass1.kaem (1828B)
- #!/bin/sh
- # SPDX-FileCopyrightText: 2023 Richard Masters <grick23@gmail.com>
- # SPDX-License-Identifier: MIT
- set -ex
- mkdir build
- cd build
- ungz --file ${DISTFILES}/${pkg}.tar.gz --output ${pkg}.tar
- untar --file ${pkg}.tar
- cd ${pkg}
- mkdir -p build_generic/include/generated
- catm build_generic/include/generated/ext4_config.h ../../config/ext4_config.h
- cd blockdev/linux
- tcc -m32 -march=i386 -std=c89 -I../../include -I../../build_generic/include -I../../../tcc/tcc-0.9.27/include -DVERSION="\"1.0\"" -c file_dev.c
- cd ../../src
- alias cc="tcc -m32 -march=i386 -std=c89 -I../include -I../build_generic/include -I../../tcc/tcc-0.9.27/include"
- cc -c ext4.c
- cc -c ext4_balloc.c
- cc -c ext4_bcache.c
- cc -c ext4_bitmap.c
- cc -c ext4_block_group.c
- cc -c ext4_blockdev.c
- cc -c ext4_crc32.c
- cc -c ext4_debug.c
- cc -c ext4_dir.c
- cc -c ext4_dir_idx.c
- cc -c ext4_extent.c
- cc -c ext4_fs.c
- cc -c ext4_hash.c
- cc -c ext4_ialloc.c
- cc -c ext4_inode.c
- cc -c ext4_journal.c
- cc -c ext4_mbr.c
- cc -c ext4_mkfs.c
- cc -c ext4_super.c
- cc -c ext4_trans.c
- cc -c ext4_xattr.c
- cp ../../../files/make_fiwix_initrd.c make_fiwix_initrd.c
- tcc -m32 -march=i386 -std=c89 -I../include -I../build_generic/include -I../../tcc/tcc-0.9.27/include -DVERSION="\"1.0\"" -c make_fiwix_initrd.c
- tcc -m32 -o ${BINDIR}/make_fiwix_initrd ext4.o ext4_balloc.o ext4_bcache.o ext4_bitmap.o ext4_block_group.o ext4_blockdev.o ext4_crc32.o ext4_debug.o ext4_dir.o ext4_dir_idx.o ext4_extent.o ext4_fs.o ext4_hash.o ext4_ialloc.o ext4_inode.o ext4_journal.o ext4_mbr.o ext4_mkfs.o ext4_super.o ext4_trans.o ext4_xattr.o ../blockdev/linux/file_dev.o make_fiwix_initrd.o
- cd ../../..
- # Checksums
- if match x${UPDATE_CHECKSUMS} xTrue; then
- sha256sum -o ${pkg}.checksums \
- /usr/bin/make_fiwix_initrd
- cp ${pkg}.checksums ${SRCDIR}
- else
- sha256sum -c ${pkg}.checksums
- fi