source: freewrt/scripts/ipkg-make-index.sh@ 3fdeb56

historic/freewrt_1_0_1
Last change on this file since 3fdeb56 was a856a59, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

use shell script for package list

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1369 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100755
File size: 646 bytes
Line 
1#!/bin/sh
2set -e
3
4pkg_dir=$1
5
6if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then
7 echo "Usage: ipkg-make-index <package_directory>"
8 exit 1
9fi
10
11which md5sum 2>&1 >/dev/null || alias md5sum=md5
12
13for pkg in `find $pkg_dir -name '*.ipk' | sort`; do
14 echo "Generating index for package $pkg" >&2
15 file_size=$(ls -l $pkg | awk '{print $5}')
16 md5sum=$(md5sum $pkg | awk '{print $1}')
17 # Take pains to make variable value sed-safe
18 sed_safe_pkg=`echo $pkg | sed -e 's/\\//\\\\\\//g'`
19 tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\
20Size: $file_size\\
21MD5Sum: $md5sum\\
22Description:/"
23 echo ""
24done
Note: See TracBrowser for help on using the repository browser.