summaryrefslogtreecommitdiff
authorkergoth <kergoth>2002-09-24 20:57:46 (UTC)
committer kergoth <kergoth>2002-09-24 20:57:46 (UTC)
commit16b7ec203f0306b911cbb1ee90f75cef9dcc3938 (patch) (unidiff)
tree3dde7e802f4fe0253370a11279f265161a256a81
parent7a04855af4e042152a47e90192dc4c2c20858e8c (diff)
downloadopie-16b7ec203f0306b911cbb1ee90f75cef9dcc3938.zip
opie-16b7ec203f0306b911cbb1ee90f75cef9dcc3938.tar.gz
opie-16b7ec203f0306b911cbb1ee90f75cef9dcc3938.tar.bz2
Added -c option to generate old format ipks.
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/ipkg-build13
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/ipkg-build b/scripts/ipkg-build
index ac8f286..0533048 100755
--- a/scripts/ipkg-build
+++ b/scripts/ipkg-build
@@ -123,4 +123,4 @@ You probably want to chown these to a system user: " >&2
123ogargs="" 123ogargs=""
124usage="Usage: $0 [-o owner] [-g group] <pkg_directory> [<destination_directory>]" 124usage="Usage: $0 [-o owner] [-g group] [-c] <pkg_directory> [<destination_directory>]"
125while getopts ":o:g:" opt; do 125while getopts ":o:g:c" opt; do
126 case $opt in 126 case $opt in
@@ -132,2 +132,4 @@ while getopts ":o:g:" opt; do
132 ;; 132 ;;
133 c ) classic=1
134 ;;
133 \? ) echo $usage >&2 135 \? ) echo $usage >&2
@@ -186,5 +188,8 @@ pkg_file=$dest_dir/${pkg}_${version}_${arch}.ipk
186here_dir=$PWD 188here_dir=$PWD
187## tar -C $tmp_dir -czf $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz
188rm -f $pkg_file 189rm -f $pkg_file
189cd $tmp_dir ; ar crf $here_dir/$pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz 190if [ -n "$classic" ]; then
191 tar -C $tmp_dir -czf $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz
192else
193 cd $tmp_dir ; ar crf $here_dir/$pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz
194fi
190cd $here_dir 195cd $here_dir