mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
Restructure
This commit is contained in:
parent
e5cbaa9e04
commit
5a369dc783
77 changed files with 419 additions and 295 deletions
26
sysa/bzip2-1.0.8/bzip2-1.0.8.kaem
Executable file
26
sysa/bzip2-1.0.8/bzip2-1.0.8.kaem
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
cd build
|
||||
|
||||
# Extract
|
||||
gunzip ../src/${pkg}.tar.gz
|
||||
tar xf ../src/${pkg}.tar
|
||||
cd ${pkg}
|
||||
|
||||
# Patch
|
||||
patch -Np0 -i ../../patches/mes-libc.patch
|
||||
patch -Np0 -i ../../patches/coreutils.patch
|
||||
|
||||
# Build
|
||||
make CC=tcc AR="tcc -ar" bzip2
|
||||
|
||||
# Install
|
||||
cp bzip2 /after/bin/bzip2
|
||||
chmod 755 /after/bin/bzip2
|
||||
|
||||
# Test
|
||||
bzip2 --help
|
||||
|
||||
cd ../..
|
||||
Loading…
Add table
Add a link
Reference in a new issue