pandoc/deb/Makefile

14 lines
390 B
Makefile
Raw Normal View History

2016-01-07 19:54:19 +01:00
TREE?=HEAD
DEBPKGVER?=1
VAGRANTBOX?=debian/wheezy64
2015-10-25 06:58:59 +01:00
.PHONY: package clean
package:
VAGRANTBOX=$(VAGRANTBOX) vagrant up
2016-01-07 20:40:01 +01:00
vagrant ssh -c 'DEBPKGVER=$(DEBPKGVER) rm -rf pandoc && git clone https://github.com/jgm/pandoc && cd pandoc && git checkout -b work $(TREE) && git submodule update --init && sh -ev ./deb/make_deb.sh && cp *.deb /vagrant_data/'
vagrant halt
2015-10-25 06:58:59 +01:00
clean:
vagrant destroy