update alnux package and turn glibc and busybox into compiled packages

This commit is contained in:
hippoz 2021-07-04 17:48:42 +03:00
parent e593640fd5
commit a8fbfdc1d4
10 changed files with 17 additions and 20 deletions

View file

@ -1,7 +1 @@
mkdir $1/dev mkdir -p $1/dev $1/mnt $1/proc $1/run $1/sbin $1/sys $1/tmp $1/bin $1/usr/bin $1/lib
mkdir $1/mnt
mkdir $1/proc
mkdir $1/run
mkdir $1/sbin
mkdir $1/sys
mkdir $1/tmp

View file

@ -1,5 +1,5 @@
pkg_config_deploy=true pkg_config_deploy=true
pkg_config_ver="0.2" pkg_config_ver="0.3"
pkg_config_name="alnux" pkg_config_name="alnux"
pkg_config_makedepends="" pkg_config_makedepends=""
pkg_config_depends="" pkg_config_depends=""

View file

@ -0,0 +1,6 @@
wget -O busybox.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
tar -xf busybox.tar.bz2
cd busybox
make defconfig
LDFLAGS="--static" make
make install DESTDIR="$1"

View file

@ -1,5 +1,5 @@
pkg_config_deploy=true pkg_config_deploy=true
pkg_config_ver="0.2" pkg_config_ver="1.33.1"
pkg_config_name="busybox" pkg_config_name="busybox"
pkg_config_makedepends="" pkg_config_makedepends=""
pkg_config_depends="" pkg_config_depends=""

View file

@ -1,5 +0,0 @@
pkg_config_deploy=true
pkg_config_ver="0.1"
pkg_config_name="glibc-bin"
pkg_config_makedepends=""
pkg_config_depends=""

8
glibc/build Normal file
View file

@ -0,0 +1,8 @@
wget -O glibc.tar.gz https://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
tar -xf glibc.tar.gz
cd glibc
mkdir build
cd build
../configure --prefix=/usr
make
make install DESTDIR="$1"

View file

@ -1,5 +0,0 @@
pkg_config_deploy=true
pkg_config_ver="0.2"
pkg_config_name="helloworld"
pkg_config_makedepends=""
pkg_config_depends=""

View file

@ -1 +0,0 @@
echo "Hello, Alnux world!"