X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=utils%2Fbuild-macports-portfile;fp=utils%2Fbuild-macports-portfile;h=c5e6a48ded6876808d0287180a6af0264de91386;hb=436fa72417f0d086347bcaa7256d5f83296bc6d6;hp=0000000000000000000000000000000000000000;hpb=80d903a7cacc0c5c60adfb86067e7c348f83e4c2;p=monkeysphere.git diff --git a/utils/build-macports-portfile b/utils/build-macports-portfile new file mode 100755 index 0000000..c5e6a48 --- /dev/null +++ b/utils/build-macports-portfile @@ -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"