From 1d0876af1f6b526a930d39d9b6a3e053d218e981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz=20=28arab=2C=20vx?= =?UTF-8?q?p=29?= Date: Fri, 12 Feb 2016 12:43:29 +0100 Subject: - Major cleanup in general. - Added --{build-{scripts,steps},help,tarball}. Variables can now be overriden on the command-line. - Integrated bzip2, dash, less, ncurses, popt, rsync, tar, util-linux, which, and xz; as there are no patches in portage/ for util-linux just yet, this presently requires integrated local patches. Git is included in build.vars only as it requires OpenSSL. - Include ntapi.local.patch and psxscl.local.patch in the repository. --- 006.musl.build | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 006.musl.build (limited to '006.musl.build') diff --git a/006.musl.build b/006.musl.build deleted file mode 100644 index d34f5b00..00000000 --- a/006.musl.build +++ /dev/null @@ -1,46 +0,0 @@ -export lz_arch=${ARCH} lz_cflags_debug=-O2 lz_target=${TARGET}; - -if is_build_script_done finished; then - exit 212; -elif [ "x${3}" = "xno-complex" ]; then - # Musl: build (no-complex) - _install=install_no_complex; - set_build_dir musl-${PKG_MUSL_VERSION}-${3} cross; - fetch http://www.musl-libc.org/releases/musl-${PKG_MUSL_VERSION}.tar.gz \ - ${PKG_MUSL_SHA256SUM}; - if ! is_build_script_done extracted; then - rm_if_exists musl-${PKG_MUSL_VERSION}; - tar -xf musl-${PKG_MUSL_VERSION}.tar.gz; - cp -R mmglue/* musl-${PKG_MUSL_VERSION}/; - set_build_script_done extracted -configured; - fi; -elif [ "x${3}" = "xnative" ]; then - # Musl: build (full) - _install=install; - set_build_dir musl-${PKG_MUSL_VERSION} ${3}; -else - # Musl: build (full) - _install=install; - set_build_dir musl-${PKG_MUSL_VERSION} cross; -fi; -if ! is_build_script_done configured; then - rm_if_exists -m -c ${BUILD_DIR}; - ../lazy/lazy \ - -a ${ARCH} \ - -c gcc \ - -f ${PREFIX_LVL} \ - -n musl \ - -p ../musl-${PKG_MUSL_VERSION} \ - -t ${lz_target} \ - -x config; - set_build_script_done configured -built; -else - cd ${BUILD_DIR}; -fi; -if ! is_build_script_done built; then - ./lazy -e ${_install} \ - -x build; - set_build_script_done built finished; -fi; - -# vim:filetype=sh -- cgit v1.2.3