diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-19 15:35:22 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-19 15:35:22 +0100 |
commit | e98b9f679619c4da2066697d3883a091736a37a0 (patch) | |
tree | 73b1b133984300c0af7622248b34b89b261cd97b /deb/Makefile | |
parent | a96105551be0484c901ff3586dcf952166a9e794 (diff) | |
download | pandoc-e98b9f679619c4da2066697d3883a091736a37a0.tar.gz |
Removed unneeded deb directory.
We now use static-linux to create the deb.
Diffstat (limited to 'deb/Makefile')
-rw-r--r-- | deb/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/deb/Makefile b/deb/Makefile deleted file mode 100644 index e72921e9a..000000000 --- a/deb/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -TREE?=HEAD -DEBPKGVER?=1 -VAGRANTBOX?=debian/wheezy64 - -.PHONY: package clean - -package: - VAGRANTBOX=$(VAGRANTBOX) vagrant up - vagrant ssh -c 'rm -rf pandoc && git clone https://github.com/jgm/pandoc && cd pandoc && git checkout -b work $(TREE) && DEBPKGVER=$(DEBPKGVER) sh -ev ./deb/make_deb.sh && cp *.deb /vagrant_data/' - vagrant halt - -clean: - vagrant destroy - -rm pandoc pandoc-citeproc |