update make-ipkg-dir.sh
[openwrt-10.03/.git] / scripts / make-ipkg-dir.sh
1 #!/bin/bash
2 BASE=http://svn.openwrt.org/openwrt/trunk/openwrt
3 TARGET=$1
4 CONTROL=$2
5 VERSION=$3
6 ARCH=$4
7
8 mkdir -p "$TARGET/CONTROL"
9 grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control"
10 grep '^Maintainer' "$CONTROL" 2>&1 >/dev/null || \
11         echo "Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>" >> "$TARGET/CONTROL/control"
12 grep '^Source' "$CONTROL" 2>&1 >/dev/null || {
13         pkgbase=$(pwd | sed -e "s|^$TOPDIR/||g")
14         [ "$pkgbase" = "$WD" ] && src="N/A" || src="$BASE/$pkgbase"
15         echo "Source: $src" >> "$TARGET/CONTROL/control"
16 }
17 echo "Version: $VERSION" >> "$TARGET/CONTROL/control"
18 echo "Architecture: $ARCH" >> "$TARGET/CONTROL/control"
19 chmod 644 "$TARGET/CONTROL/control"