Compare commits
No commits in common. "5f0287aacf441abfdfd6a6365008ff6628b50819" and "8c5689b7c088e74840999b6e910b3eef7d3804db" have entirely different histories.
5f0287aacf
...
8c5689b7c0
66
system/bash
66
system/bash
@ -1,66 +0,0 @@
|
|||||||
#
|
|
||||||
# bash
|
|
||||||
#
|
|
||||||
|
|
||||||
# Package metadata
|
|
||||||
PACKAGE_NAME="bash"
|
|
||||||
PACKAGE_VER="5.2.015"
|
|
||||||
PACKAGE_DESC="GNU Bourne Again Shell"
|
|
||||||
MAINTAINER="liamwaldron@everestlinux.org"
|
|
||||||
LICENSE="GPL v3"
|
|
||||||
ARCH="x86"
|
|
||||||
INCLUDED_FILES=("/bin/bash")
|
|
||||||
|
|
||||||
# Integrity checking
|
|
||||||
SHA256SUMS="8b1079684f9aaf84de293771c78b83ff4b69588eeb34138ff331f26926dd1ae6"
|
|
||||||
|
|
||||||
# Dependency information
|
|
||||||
DEPENDS=("")
|
|
||||||
CONFLICTS=("")
|
|
||||||
|
|
||||||
# Source information
|
|
||||||
PACKAGE_SRC="https://github.com/robxu9/bash-static/releases/download/5.2.015-1.2.3-2/bash-linux-x86_64"
|
|
||||||
SOURCES="bash-linux-x86_64"
|
|
||||||
|
|
||||||
# Installation
|
|
||||||
getsource() {
|
|
||||||
wget $PACKAGE_SRC
|
|
||||||
}
|
|
||||||
|
|
||||||
buildpkg() {
|
|
||||||
chmod +x ${SOURCES}
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg() {
|
|
||||||
mkdir ${BLDR_OUT_DIR}/pkgs/bash
|
|
||||||
mv ${SOURCES} ${BLDR_OUT_DIR}/pkgs/bash/bash
|
|
||||||
touch ${BLDR_OUT_DIR}/pkgs/bash/.ispkg
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg() {
|
|
||||||
rm -rf ${BLDR_OUT_DIR}/pkgs/bash
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg() {
|
|
||||||
buildpkg "$@"
|
|
||||||
installpkg "$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# end bash
|
|
||||||
#
|
|
@ -31,7 +31,7 @@ getsource() {
|
|||||||
|
|
||||||
buildpkg() {
|
buildpkg() {
|
||||||
curl https://git.everestlinux.org/EverestLinux/sys-pkg-configs/raw/branch/main/config.busybox-1.36.0 -o .config
|
curl https://git.everestlinux.org/EverestLinux/sys-pkg-configs/raw/branch/main/config.busybox-1.36.0 -o .config
|
||||||
make ARCH="x86_64" CROSS_COMPILE="x86_64-linux-musl-" # these MUST be set
|
make ${MAKEFLAGS} ${CFLAGS} ${CXXFLAGS} ARCH="x86_64" CROSS_COMPILE="x86_64-linux-musl-" # these MUST be set
|
||||||
}
|
}
|
||||||
|
|
||||||
installpkg() {
|
installpkg() {
|
||||||
@ -39,7 +39,6 @@ installpkg() {
|
|||||||
CONFIG_PREFIX="${BLDR_OUT_DIR}/pkgs/busybox" install
|
CONFIG_PREFIX="${BLDR_OUT_DIR}/pkgs/busybox" install
|
||||||
cp -v examples/depmod.pl ${TOOLCHAIN_PATH}/bin
|
cp -v examples/depmod.pl ${TOOLCHAIN_PATH}/bin
|
||||||
chmod -v 755 ${TOOLCHAIN_PATH}/bin/depmod.pl
|
chmod -v 755 ${TOOLCHAIN_PATH}/bin/depmod.pl
|
||||||
touch ${BLDR_OUT_DIR}/pkgs/busybox/.ispkg
|
|
||||||
# Never install files to /bin, they will get
|
# Never install files to /bin, they will get
|
||||||
# overwritten when the user pulls a new update
|
# overwritten when the user pulls a new update
|
||||||
}
|
}
|
||||||
@ -69,5 +68,5 @@ updatepkg_system() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# end busybox
|
# end nano
|
||||||
#
|
#
|
||||||
|
@ -9,7 +9,7 @@ PACKAGE_DESC="musl C library"
|
|||||||
MAINTAINER="liamwaldron@everestlinux.org"
|
MAINTAINER="liamwaldron@everestlinux.org"
|
||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
ARCH="x86"
|
ARCH="x86"
|
||||||
INCLUDED_FILES=("/include/*" "/lib/crt1.o" "/lib/crt1.o" "/lib/crtn.o" "/lib/libc.a" "/lib/libcrypt.a" "/lib/libc.so" "/lib/libdl.a" "/lib/libm.a" "/lib/libpthread.a" "/lib/libresolv.a" "/lib/librt.a" "/lib/libutil.a" "/lib/libxnet.a" "/lib/rcrt1.o" "/lib/Scrt1.o")
|
INCLUDED_FILES=("")
|
||||||
|
|
||||||
# Integrity checking
|
# Integrity checking
|
||||||
SHA256SUMS="6beb3edefdf9cb77dbf6ee17d89825abb69ce563860ab71e4bc9f2867ba7b5ea"
|
SHA256SUMS="6beb3edefdf9cb77dbf6ee17d89825abb69ce563860ab71e4bc9f2867ba7b5ea"
|
||||||
|
@ -1,70 +0,0 @@
|
|||||||
#
|
|
||||||
# toolchain
|
|
||||||
#
|
|
||||||
|
|
||||||
# Package metadata
|
|
||||||
PACKAGE_NAME="toolchain"
|
|
||||||
PACKAGE_VER="1.0.0"
|
|
||||||
PACKAGE_DESC="Everest Linux system toolchain"
|
|
||||||
MAINTAINER="liamwaldron@everestlinux.org"
|
|
||||||
LICENSE="N/A"
|
|
||||||
ARCH="x86"
|
|
||||||
INCLUDED_FILES=("/bin/*" "/lib/*" "/include/*" "/libexec/*" "/share/*")
|
|
||||||
|
|
||||||
# Integrity checking
|
|
||||||
SHA256SUMS="a996907fc87e8c0d4603acd788c6009d1adeb3c99be99d07fc3df3256b52adfe"
|
|
||||||
|
|
||||||
# Dependency information
|
|
||||||
DEPENDS=("")
|
|
||||||
CONFLICTS=("")
|
|
||||||
|
|
||||||
# Source information
|
|
||||||
PACKAGE_SRC="https://musl.cc/x86_64-linux-musl-native.tgz"
|
|
||||||
SOURCES=("x86_64-linux-musl-native.tgz" "x86_64-linux-musl-native")
|
|
||||||
|
|
||||||
# Installation
|
|
||||||
getsource() {
|
|
||||||
wget $PACKAGE_SRC
|
|
||||||
tar xf ${SOURCES[0]}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildpkg() {
|
|
||||||
printf "Installing toolchain...\n"
|
|
||||||
sleep 1
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg() {
|
|
||||||
mv -v ${SOURCES[1]} toolchain
|
|
||||||
mv -v toolchain ${BLDR_OUT_DIR}/pkgs
|
|
||||||
touch ${BLDR_OUT_DIR}/pkgs/toolchain/.ispkg
|
|
||||||
# Never install files to /bin, they will get
|
|
||||||
# overwritten when the user pulls a new update
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg() {
|
|
||||||
rm -rf ${BLDR_OUT_DIR}/pkgs/toolchain
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg() {
|
|
||||||
buildpkg "$@"
|
|
||||||
installpkg "$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg_system() {
|
|
||||||
printf "Not supported for this package.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# end nano
|
|
||||||
#
|
|
Loading…
Reference in New Issue
Block a user