From 2100d5d8c47c2b51b21f0f2a8e0909fc5837023a Mon Sep 17 00:00:00 2001 From: Jose V Beneyto Date: Fri, 15 Apr 2011 12:12:58 +0200 Subject: [PATCH] Added initial version for prt-get-cross and his config file --- prt-get-cross | 14 ++++++++++++++ prt-get-cross.conf | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100755 prt-get-cross create mode 100644 prt-get-cross.conf diff --git a/prt-get-cross b/prt-get-cross new file mode 100755 index 0000000..52c442b --- /dev/null +++ b/prt-get-cross @@ -0,0 +1,14 @@ +#!/bin/bash + +# Edit the variables to your needs + +PATH="/devel/crux-arm/pkgutils-cross:/devel/crux-arm/devtools:$PATH" +CONFIG="/devel/crux-arm/devtools/prt-get-cross.conf" +CLFS="/devel/crux-arm/toolchain/clfs" + +export PATH + +prt-get --install-root=$CLFS_PATH --config=$CONFIG $@ + +# End of file + diff --git a/prt-get-cross.conf b/prt-get-cross.conf new file mode 100644 index 0000000..4dbb708 --- /dev/null +++ b/prt-get-cross.conf @@ -0,0 +1,35 @@ +### +### prt-get-cross conf +### + +# note: the order matters: the package found first is used +prtdir /devel/crux-arm/ports/core-cross + +### log options: +writelog enabled # (enabled|disabled) +logmode overwrite # (append|overwrite) +rmlog_on_success yes # (no|yes) +logfile %p/%n-%v-%r.buildlog + # path, %p=path to port dir, %n=port name + # %v=version, %r=release + +### print README information: +readme verbose # (verbose|compact|disabled) + +### prefer higher versions in sysup / diff +preferhigher yes # (yes|no) + +### use regexp search +useregex yes # (yes|no) + +### run pre- and post-installs scripts; yes is equivalent to the +### --install-scripts option +runscripts yes # (no|yes) + + +### EXPERT SECTION ### + +### alternative commands +makecommand pkgmk-cross +addcommand pkgadd-cross +removecommand pkgrm-cross -- 2.26.2