diff --git a/Makefile b/Makefile index eae0da5..1a1169c 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,15 @@ SCHEME="Mini vMac" CONFIGURATION=Release APP="build/Build/Products/$(CONFIGURATION)-iphoneos/Mini vMac.app" VERSION=`xpath 2>/dev/null Mini\ vMac/Info.plist "/plist/dict/key[.='CFBundleShortVersionString']/following-sibling::*[1]/text()"` +LDID=ldid deb: $(APP) rm -rf build/deb mkdir -p build/deb/{Applications,DEBIAN} cp -r $(APP) build/deb/Applications/ + rm -f "build/deb/Applications/Mini vMac.app/embedded.mobileprovision" + find build/deb/Applications -name _CodeSignature -exec rm -rvf {} + + find build/deb/Applications -type f -perm -111 -exec $(LDID) {} \; cp apt-control build/deb/DEBIAN/control echo Installed-Size: `du -ck build/deb | tail -1 | cut -f 1` >> build/deb/DEBIAN/control echo Version: $(VERSION) >> build/deb/DEBIAN/control