summaryrefslogtreecommitdiffhomepage
path: root/204.psxscl.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 /204.psxscl.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 '204.psxscl.build')
-rw-r--r--204.psxscl.build31
1 files changed, 31 insertions, 0 deletions
diff --git a/204.psxscl.build b/204.psxscl.build
new file mode 100644
index 00000000..697ac861
--- /dev/null
+++ b/204.psxscl.build
@@ -0,0 +1,31 @@
+# Order: dalist ntapi pemagine psxtypes psxscl ntctty
+
+parse_with_pkg_name ${2} \
+ dalist ntapi ntctty pemagine psxscl psxtypes;
+if is_build_script_done finished; then
+ exit 212;
+else
+ fetch_git ${PKG_SUBDIR} ${PKG_URL};
+ set_build_dir ${PKG_SUBDIR} cross;
+fi;
+if ! is_build_script_done configured; then
+ rm_if_exists -m -c ${BUILD_DIR};
+ ../${PKG_SUBDIR}/configure \
+ --prefix=${PREFIX_NATIVE} \
+ --host=${HOST_NATIVE} \
+ --target=${TARGET} \
+ --sysroot=/;
+ set_build_script_done configured -built;
+else
+ cd ${BUILD_DIR};
+fi;
+if ! is_build_script_done built; then
+ make ${MAKEFLAGS};
+ set_build_script_done built -installed;
+fi;
+if ! is_build_script_done installed; then
+ make ${MAKEFLAGS} install;
+ set_build_script_done installed finished;
+fi;
+
+# vim:filetype=sh