You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
299 B
11 lines
299 B
#!/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"
|
|
|