Compare commits

..

No commits in common. "a8fbfdc1d482be76c1a097b4ec7eb1f54ed56b15" and "b46c3690191ca96f978dfc69d1a930a48f1a6659" have entirely different histories.

11 changed files with 20 additions and 22 deletions

View file

@ -1 +1,7 @@
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/dev
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_ver="0.3"
pkg_config_ver="0.2"
pkg_config_name="alnux"
pkg_config_makedepends=""
pkg_config_depends=""

View file

@ -1,6 +0,0 @@
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_ver="1.33.1"
pkg_config_ver="0.2"
pkg_config_name="busybox"
pkg_config_makedepends=""
pkg_config_depends=""

5
glibc-bin/package Executable file
View file

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

Binary file not shown.

Binary file not shown.

View file

@ -1,8 +0,0 @@
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="2.33"
pkg_config_name="glibc"
pkg_config_makedepends=""
pkg_config_depends=""

5
helloworld/package Executable file
View file

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

View file

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