diff options
author | Jay Freeman <saurik@saurik.com> | 2008-01-04 01:17:50 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-01-04 01:17:50 +0000 |
commit | 03880b546d794abafd6dab3eed876dbefe06c174 (patch) | |
tree | 42ef9d2fb26b6321a7bda2f8eecb0009471bb3c2 /data/adv-cmds | |
parent | 8f3b67fe1123828377d340922a1aca2d4c4c1989 (diff) |
Revision numbers on packages now being bumped, moved files around in Apple packages to the correct folders (adjusting for conflicts), added numerous Java packages, and fixed dependencies on findutils, coreutils, inetutils, and gnupg.
git-svn-id: http://svn.telesphoreo.org/trunk@11 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/adv-cmds')
-rw-r--r-- | data/adv-cmds/make.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/data/adv-cmds/make.sh b/data/adv-cmds/make.sh index 651693003..1322591b9 100644 --- a/data/adv-cmds/make.sh +++ b/data/adv-cmds/make.sh @@ -1,5 +1,9 @@ -tar -zxvf "${PKG_DATA}/adv_cmds-118.tar.gz" -cd adv_cmds-118 -arm-apple-darwin-gcc -o ps ps.tproj/*.c -D'__FBSDID(x)=' -mkdir -p "${PKG_DEST}/usr/bin" -cp -a ps "${PKG_DEST}/usr/bin" +pkg:extract +cd * +for tproj in lsvfs ps; do + arm-apple-darwin-gcc -o "${tproj}" "${tproj}.tproj"/*.c -D'__FBSDID(x)=' + arm-apple-darwin-strip "${tproj}" +done +pkg: mkdir -p /bin /usr/bin +pkg: cp -a ps /bin +pkg: cp -a lsvfs /usr/bin |