mirror of
https://linux.maple.camp/git/ahill/maplelinux-bootstrap.git
synced 2026-02-11 10:13:35 +00:00
Started bootstrapping with treetap
This commit is contained in:
4
sources/busybox.spec
Normal file
4
sources/busybox.spec
Normal file
@@ -0,0 +1,4 @@
|
||||
SRC_HASH="b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314"
|
||||
SRC_NAME="busybox"
|
||||
SRC_URL="https://busybox.net/downloads/busybox-1.36.1.tar.bz2"
|
||||
SRC_VERSION="1.36.1"
|
||||
4
sources/linux.spec
Normal file
4
sources/linux.spec
Normal file
@@ -0,0 +1,4 @@
|
||||
SRC_HASH="ddf2ea0d4439e1d57136be3623102af9458f601f5b1cb77e83246e88aea09d0e"
|
||||
SRC_NAME="linux"
|
||||
SRC_URL="https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.17.7.tar.xz"
|
||||
SRC_VERSION="6.17.7"
|
||||
4
sources/llvm.spec
Normal file
4
sources/llvm.spec
Normal file
@@ -0,0 +1,4 @@
|
||||
SRC_HASH="1794be4bf974e99a3fe1da4b2b9b1456c02ae9479c942f365441d8d207bd650c"
|
||||
SRC_NAME="llvm"
|
||||
SRC_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-21.1.5/llvm-project-21.1.5.src.tar.xz"
|
||||
SRC_VERSION="21.1.5"
|
||||
28
sources/musl.spec
Normal file
28
sources/musl.spec
Normal file
@@ -0,0 +1,28 @@
|
||||
SRC_HASH="a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4"
|
||||
SRC_NAME="musl"
|
||||
SRC_URL="https://musl.libc.org/releases/musl-1.2.5.tar.gz"
|
||||
SRC_VERSION="1.2.5"
|
||||
|
||||
# TODO: CVE-2025-26519
|
||||
|
||||
build() {
|
||||
tar xf ../musl-*.tar*
|
||||
cd musl-*/
|
||||
./configure \
|
||||
--bindir=$TREETAP_BINDIR \
|
||||
--build=$TREETAP_BUILD \
|
||||
--includedir=$TREETAP_INCLUDEDIR \
|
||||
--libdir=$TREETAP_LIBDIR \
|
||||
--prefix=$TREETAP_PREFIX \
|
||||
--target=$TREETAP_TARGET
|
||||
make -j $TREETAP_PROCS
|
||||
}
|
||||
|
||||
clean() {
|
||||
rm -rf musl-*/
|
||||
}
|
||||
|
||||
package() {
|
||||
cd musl-*/
|
||||
DESTDIR=$TREETAP_INSTALLDIR make install
|
||||
}
|
||||
Reference in New Issue
Block a user