summaryrefslogtreecommitdiffhomepage
path: root/207.libz.build
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-07 16:54:05 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-07 17:24:59 +0100
commit75a203ce9044974fd5027654348c7a4414877e35 (patch)
treecf87ae3fc657d39653e8f694c94d89c5c67e806c /207.libz.build
parent96b3097e548d741fe34bc2b54b5f59c725c06cec (diff)
downloadmidipix_build-75a203ce9044974fd5027654348c7a4414877e35.tar.bz2
midipix_build-75a203ce9044974fd5027654348c7a4414877e35.tar.xz
- Followup to last commit.
- Inserted dalist, ntapi, pemagine, psxtypes, psxscl, and ntctty in between build levels 1 (binutils...) and 2 (coreutils...) which is now build level 3. - Added SHA256 manifest for the upstream patches of bash, as verifying the signatures provided would tie in GnuPG as a dependency.
Diffstat (limited to '207.libz.build')
-rw-r--r--207.libz.build42
1 files changed, 0 insertions, 42 deletions
diff --git a/207.libz.build b/207.libz.build
deleted file mode 100644
index a6f48d59..00000000
--- a/207.libz.build
+++ /dev/null
@@ -1,42 +0,0 @@
-parse_with_pkg_name ${2} libz gzip;
-if is_build_script_done finished; then
- exit 212;
-else
- fetch ${PKG_URL} ${PKG_SHA256SUM};
-fi;
-if ! is_build_script_done extracted; then
- rm_if_exists ${PKG_FNAME%%.tar*};
- tar -axf ${PKG_FNAME};
- set_build_script_done extracted -configured;
-fi;
-if ! is_build_script_done configured; then
- set_build_dir ${PKG_FNAME%%-*} native;
- rm_if_exists -c -m ${BUILD_DIR};
- cp ../portage/config.cache .;
- ../${PKG_SUBDIR}/configure \
- --host=${HOST_NATIVE} \
- --prefix= \
- --target=${TARGET};
- set_build_script_done configured -built;
-else
- cd ${BUILD_DIR};
-fi;
-if ! is_build_script_done built; then
- if [ "x${2}" = "xlibz" ]; then
- make -j18;
- elif [ "x${2}" = "xgzip" ]; then
- make clean;
- make;
- fi;
- set_build_script_done built -installed;
-fi;
-if ! is_build_script_done installed; then
- if [ "x${2}" = "xlibz" ]; then
- make -j18 DESTDIR=${PREFIX_NATIVE} install;
- elif [ "x${2}" = "xgzip" ]; then
- cp gunzip gzip zcat ${PREFIX_NATIVE}/bin;
- fi;
- set_build_script_done installed finished;
-fi;
-
-# vim:filetype=sh