Add zlib-ng, make and gettext and other sources

This commit is contained in:
Night Kaly 2024-08-10 16:31:59 +01:00
parent c47a0088cf
commit ba91ff6748
Signed by: night0721
GPG key ID: 957D67B8DB7A119B
3 changed files with 23 additions and 6 deletions

View file

@ -14,7 +14,7 @@ COS(Collection Of Suckless) is a tiny Linux distribution that aims to be as suck
- File Manager: ccc
- Window Manager: dwl
- Dmenu: mew
- Misc: mandoc, libressl, zlib-ng
- Misc: mandoc, libressl, zlib-ng, make, gettext
# Download
Currently none.
@ -23,4 +23,4 @@ Currently none.
Contributions are welcomed, feel free to open a pull request.
# License
This project is licensed under the GNU Public License v3.0. See [LICENSE](https://github.com/night0721/cos/blob/master/LICENSE) for more information.
This project is licensed under the GNU Public License v3.0. See [LICENSE](https://github.com/coslinux/coslinux/blob/master/LICENSE) for more information.

21
init
View file

@ -93,20 +93,33 @@ git clone https://repo.or.cz/tinycc
cd tinycc
./configure --config-musl --enable-static --disable-rpath --prefix="/mnt/cos/usr" --extra-cflags="-O3 -mtune=native -march=native -pipe -s -flto"
make
ssu make DESTDIR=/mnt/cos install
make install
git clone https://git.suckless.org/sbase
cd sbase
make
ssu make DESTDIR=/mnt/cos install
make install
git clone https://git.suckless.org/ubase
cd ubase
make
ssu make DESTDIR=/mnt/cos install
make install
git clone https://git.musl-libc.org/git/musl
cd musl
./configure
make
make DESTDIR=/mnt/cos install
make install
git clone https://github.com/zlib-ng/zlib-ng
cd zlib-ng
./configure --zlib-compat
make
make install
tar -xf make-4.4.1.tar.gz
./configure --prefix=/mnt/cos/usr
make
ssu make install
tar -xf gettext-0.22.5.tar.gz
./configure --enable-threads=posix --disable-java --enable-static --prefix=/mnt/cos/usr
make
ssu make install
cat > /etc/fstab << "EOF"
/dev/nvme0n1p4 / ext4 rw,relatime 0 1

View file

@ -9,3 +9,7 @@ https://codeberg.org/night0721/90s
https://codeberg.org/night0721/vip
https://codeberg.org/night0721/bob
https://codeberg.org/night0721/ccc
https://github.com/zlib-ng/zlib-ng
https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.10.3.tar.xz
https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz
https://ftp.gnu.org/pub/gnu/gettext/gettext-0.22.5.tar.gz