diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-10 23:04:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-10 23:04:00 +0000 |
commit | 97eaa9e31ee443fc8e53a42466bdc6dd95f67989 (patch) | |
tree | 8a2b557729e41f1cbf43e6f4b2b03b54cbb0d7b8 /scripts | |
parent | b0ccfcae51b30279f589c3d647ce8d5cbadc0cf6 (diff) | |
download | upstream-97eaa9e31ee443fc8e53a42466bdc6dd95f67989.tar.gz upstream-97eaa9e31ee443fc8e53a42466bdc6dd95f67989.tar.bz2 upstream-97eaa9e31ee443fc8e53a42466bdc6dd95f67989.zip |
replace ipkg-make-index with a shell script that works on bsd
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5046 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ipkg-make-index.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh new file mode 100755 index 0000000000..46051045ae --- /dev/null +++ b/scripts/ipkg-make-index.sh @@ -0,0 +1,24 @@ +#!/bin/sh +set -e + +pkg_dir=$1 + +if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then + echo "Usage: ipkg-make-index <package_directory>" + exit 1 +fi + +which md5sum 2>&1 >/dev/null || alias md5sum=md5 + +for pkg in `find $pkg_dir -name '*.ipk' | sort`; do + echo "Generating index for package $pkg" >&2 + file_size=$(ls -l $pkg | awk '{print $5}') + md5sum=$(md5sum $pkg | awk '{print $1}') + # Take pains to make variable value sed-safe + sed_safe_pkg=`echo $pkg | sed -e 's/\\//\\\\\\//g'` + tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\ +Size: $file_size\\ +MD5Sum: $md5sum\\ +Description:/" + echo "" +done |