Created
January 23, 2014 13:10
-
-
Save carlossg/8578202 to your computer and use it in GitHub Desktop.
Script to change .deb control file and repackage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Change .deb control file and repackage | |
# credits Loevborg http://ubuntuforums.org/showthread.php?t=636724&p=3925729#post3925729 | |
if [[ -z "$1" ]]; then | |
echo "Syntax: $0 debfile" | |
exit 1 | |
fi | |
DEBFILE="$1" | |
TMPDIR=`mktemp -d /tmp/deb.XXXXXXXXXX` || exit 1 | |
OUTPUT=`basename "$DEBFILE" .deb`.modified.deb | |
if [[ -e "$OUTPUT" ]]; then | |
echo "$OUTPUT exists." | |
rm -r "$TMPDIR" | |
exit 1 | |
fi | |
dpkg-deb -x "$DEBFILE" "$TMPDIR" | |
dpkg-deb --control "$DEBFILE" "$TMPDIR"/DEBIAN | |
if [[ ! -e "$TMPDIR"/DEBIAN/control ]]; then | |
echo DEBIAN/control not found. | |
rm -r "$TMPDIR" | |
exit 1 | |
fi | |
CONTROL="$TMPDIR"/DEBIAN/control | |
MOD=`stat -c "%y" "$CONTROL"` | |
vi "$CONTROL" | |
if [[ "$MOD" == `stat -c "%y" "$CONTROL"` ]]; then | |
echo Not modified. | |
else | |
echo Building new deb... | |
dpkg -b "$TMPDIR" "$OUTPUT" | |
fi | |
rm -r "$TMPDIR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment