diff --git a/clang/build b/clang/build index 8264904..7f83d7f 100755 --- a/clang/build +++ b/clang/build @@ -1,8 +1,7 @@ -wget https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz -tar -xf clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz -cd clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04 -cd OBJ_ROOT -cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$1"/usr/bin +wget https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.1/clang-12.0.1.src.tar.xz +untar -xf clang-12.0.1.src.tar.xz +cd clang-12.0.1.src +cmake -S llvm -G "Unix Makefiles" -B build -DCMAKE_INSTALL_PREFIX="$1"/usr/bin make make install DESTDIR="$1" diff --git a/grub-defconfig/payload/boot/grub/grub.cfg b/grub-defconfig/payload/boot/grub/grub.cfg index 456aced..3cc5cf0 100644 --- a/grub-defconfig/payload/boot/grub/grub.cfg +++ b/grub-defconfig/payload/boot/grub/grub.cfg @@ -1,6 +1,6 @@ set timeout=15 set default=0 - + menuentry "Alnux" { # you will probably want to change the root below... linux /boot/bzImage noapic root=/dev/sda1 init=/usr/bin/hummingbird diff --git a/openrc/build b/openrc/build new file mode 100755 index 0000000..86a59da --- /dev/null +++ b/openrc/build @@ -0,0 +1,6 @@ +wget -O openrc-0.43.3.tar.gz https://github.com/OpenRC/openrc/archive/refs/tags/0.43.3.tar.gz +tar -xf openrc-0.43.3.tar.gz +cd openrc-0.43.3 +make +make install BRANDING=\"Alnux/$(uname -s)\" SH=/bin/sh DESTDIR="$1"/sbin/openrc PREFIX="$1" +cat tmpfs /tmp tmpfs rw,nosuid,noatime,nodev,size=20G,mode=1777 0 0 > "$1"/etc/fstab diff --git a/openrc/package b/openrc/package new file mode 100755 index 0000000..a59cf95 --- /dev/null +++ b/openrc/package @@ -0,0 +1,5 @@ +pkg_config_deploy=true +pkg_config_ver="0.43.3" +pkg_config_name="openrc" +pkg_config_makedepends="" +pkg_config_depends="make"