summaryrefslogtreecommitdiff
path: root/scripts/ipkg-build
Unidiff
Diffstat (limited to 'scripts/ipkg-build') (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