diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-14 09:05:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-16 22:13:27 (GMT) |
commit | 516b334bd963452578367b2cd354db6c39ba99c9 (patch) | |
tree | f24aa85a28be562ea64929fe298a9851c1a74965 /Swift/Packaging/Debian/Makefile.inc | |
parent | 7fdc3e80028fd93fcc0111570a01cd78282cd41a (diff) | |
download | swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.zip swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.tar.bz2 |
Remove autoconf/make files.
Diffstat (limited to 'Swift/Packaging/Debian/Makefile.inc')
-rwxr-xr-x | Swift/Packaging/Debian/Makefile.inc | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Swift/Packaging/Debian/Makefile.inc b/Swift/Packaging/Debian/Makefile.inc deleted file mode 100755 index fb079ce..0000000 --- a/Swift/Packaging/Debian/Makefile.inc +++ /dev/null @@ -1,19 +0,0 @@ -DATE=`date +%Y%m%d` -SIZE=`du -s tmpusr/usr | awk '{print $1}'` -VERSION=0.3.$(DATE) -DEBPATH=Swift/Packaging/Debian -DEBNAME=swift-preview_$(VERSION)-$(ARCH).deb -$(DEBPATH)/$(DEBNAME): all - rm -rf $(DEBPATH)/tmpusr - mkdir -p $(DEBPATH)/tmpusr/usr/bin - mkdir $(DEBPATH)/tmpusr/DEBIAN - - cp Swift/QtUI/swift $(DEBPATH)/tmpusr/usr/bin - - cat $(DEBPATH)/control | sed -e"s/\%ARCH\%/$(ARCH)/" -e"s/\%VERSION\%/$(VERSION)/" -e"s/\%SIZE\%/$(SIZE)/" > $(DEBPATH)/tmpusr/DEBIAN/control - - dpkg -b $(DEBPATH)/tmpusr $(DEBPATH)/$(DEBNAME) - -.PHONY: deb -deb: $(DEBPATH)/$(DEBNAME) - |