X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/9c01873c40f45fa5e07b5e307294c22d58aaa33b..3c2fe43ac7e32132ec69063ef9ed2cc31c262611:/scripts/make-ipkg-dir.sh diff --git a/scripts/make-ipkg-dir.sh b/scripts/make-ipkg-dir.sh index 56740676a..902a4b526 100755 --- a/scripts/make-ipkg-dir.sh +++ b/scripts/make-ipkg-dir.sh @@ -1,16 +1,18 @@ -#!/bin/bash +#!/bin/sh BASE=http://svn.openwrt.org/openwrt/trunk/openwrt TARGET=$1 CONTROL=$2 VERSION=$3 ARCH=$4 +WD=$(pwd) + mkdir -p "$TARGET/CONTROL" grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control" grep '^Maintainer' "$CONTROL" 2>&1 >/dev/null || \ echo "Maintainer: OpenWrt Developers Team " >> "$TARGET/CONTROL/control" grep '^Source' "$CONTROL" 2>&1 >/dev/null || { - pkgbase=$(pwd | sed -e "s|^$TOPDIR/||g") + pkgbase=$(echo "$WD" | sed -e "s|^$TOPDIR/||g") [ "$pkgbase" = "$WD" ] && src="N/A" || src="$BASE/$pkgbase" echo "Source: $src" >> "$TARGET/CONTROL/control" }