1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-28 03:45:02 +02:00
openwrt/openwrt/scripts/make-ipkg-dir.sh
Mike Baker 6b93231c4f nbd's makefile/menuconfig rewrite
SVN-Revision: 307
2005-03-06 03:34:52 +00:00

12 lines
299 B
Bash
Executable File

#!/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"