From 5f0287aacf441abfdfd6a6365008ff6628b50819 Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Mon, 16 Oct 2023 12:28:00 -0400 Subject: [PATCH] working on fixing system packages ahead of 1.0 release --- system/musl.old | 70 ------------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 system/musl.old diff --git a/system/musl.old b/system/musl.old deleted file mode 100644 index 1e210bc..0000000 --- a/system/musl.old +++ /dev/null @@ -1,70 +0,0 @@ -# -# musl -# - -# Package metadata -PACKAGE_NAME="musl" -PACKAGE_VER="1.2.3" -PACKAGE_DESC="musl C library" -MAINTAINER="liamwaldron@everestlinux.org" -LICENSE="MIT" -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") - -# Integrity checking -SHA256SUMS="" - -# Dependency information -DEPENDS=("") -CONFLICTS=("") - -# Source information -PACKAGE_SRC="https://musl.libc.org/releases/musl-1.2.3.tar.gz" -SOURCES=("musl-1.2.3.tar.gz" "musl-1.2.3") - -# Installation -getsource() { - wget $PACKAGE_SRC - tar xf ${SOURCES[0]} - cd ${SOURCES[1]} -} - -buildpkg() { - ./configure \ - --prefix=${BLDR_OUT_DIR}/pkgs/musl \ - --target="x86_64-linux-musl" \ - CFLAGS="${CFLAGS}" - make ${MAKEFLAGS} -} - -installpkg() { - make install ${MAKEFLAGS} -} - -installpkg_system() { - printf "Not supported for this package.\n" - exit 1 -} - -removepkg() { - rm -rf ${BLDR_OUT_DIR}/pkgs/musl -} - -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 -#