1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-23 18:23:41 +03:00
openwrt-xburst/scripts/make-ipkg-dir.sh

12 lines
299 B
Bash
Raw Normal View History

#!/bin/bash
TARGET=$1
CONTROL=$2
VERSION=$3
ARCH=$4
mkdir -p "$TARGET/CONTROL"
grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control"
echo "Version: $VERSION" >> "$TARGET/CONTROL/control"
echo "Architecture: $ARCH" >> "$TARGET/CONTROL/control"
chmod 644 "$TARGET/CONTROL/control"