blob: 529e430ad9462318a0818c5fef3bd1cf066f17c2 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2BASE=http://svn.openwrt.org/openwrt/trunk/openwrt
3TARGET=$1
4CONTROL=$2
5VERSION=$3
6ARCH=$4
7
8WD=$(pwd)
9
10mkdir -p "$TARGET/CONTROL"
11grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control"
12grep '^Maintainer' "$CONTROL" 2>&1 >/dev/null || \
13 echo "Maintainer: LEDE Community <lede-dev@lists.infradead.org>" >> "$TARGET/CONTROL/control"
14grep '^Source' "$CONTROL" 2>&1 >/dev/null || {
15 pkgbase=$(echo "$WD" | sed -e "s|^$TOPDIR/||g")
16 [ "$pkgbase" = "$WD" ] && src="N/A" || src="$BASE/$pkgbase"
17 echo "Source: $src" >> "$TARGET/CONTROL/control"
18}
19echo "Version: $VERSION" >> "$TARGET/CONTROL/control"
20echo "Architecture: $ARCH" >> "$TARGET/CONTROL/control"
21chmod 644 "$TARGET/CONTROL/control"