2005-03-06 05:34:52 +02:00
|
|
|
#!/bin/bash
|
2005-10-21 20:20:24 +03:00
|
|
|
BASE=http://svn.openwrt.org/openwrt/trunk/openwrt
|
2005-03-06 05:34:52 +02:00
|
|
|
TARGET=$1
|
|
|
|
CONTROL=$2
|
|
|
|
VERSION=$3
|
|
|
|
ARCH=$4
|
|
|
|
|
2005-10-22 15:25:42 +03:00
|
|
|
WD=$(pwd)
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
mkdir -p "$TARGET/CONTROL"
|
|
|
|
grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control"
|
2005-10-21 20:20:24 +03:00
|
|
|
grep '^Maintainer' "$CONTROL" 2>&1 >/dev/null || \
|
|
|
|
echo "Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>" >> "$TARGET/CONTROL/control"
|
|
|
|
grep '^Source' "$CONTROL" 2>&1 >/dev/null || {
|
2005-10-22 15:27:35 +03:00
|
|
|
pkgbase=$(echo "$WD" | sed -e "s|^$TOPDIR/||g")
|
2005-10-21 20:20:24 +03:00
|
|
|
[ "$pkgbase" = "$WD" ] && src="N/A" || src="$BASE/$pkgbase"
|
|
|
|
echo "Source: $src" >> "$TARGET/CONTROL/control"
|
|
|
|
}
|
2005-03-06 05:34:52 +02:00
|
|
|
echo "Version: $VERSION" >> "$TARGET/CONTROL/control"
|
|
|
|
echo "Architecture: $ARCH" >> "$TARGET/CONTROL/control"
|
|
|
|
chmod 644 "$TARGET/CONTROL/control"
|