add new util script to update the macports Portfile
[monkeysphere.git] / utils / build-macports-portfile
diff --git a/utils/build-macports-portfile b/utils/build-macports-portfile
new file mode 100755 (executable)
index 0000000..c5e6a48
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/bash -e
+
+PORTFILE="packaging/macports/Portfile"
+
+VERSION=`head -n1 packaging/debian/changelog | sed 's/.*(\([^-]*\)-.*/\1/'`
+MD5=`md5sum monkeysphere_${VERSION}.orig.tar.gz | awk '{ print $1 }'`
+
+sed -i~ 's/^version.*$/version             '"$VERSION"/ "$PORTFILE"
+sed -i~ 's/^checksums.*$/checksums           md5 '"$MD5"/ "$PORTFILE"