~stk-developers/supertree-toolkit/stk_w_support

148 by Jon Hill
Minor update to makefile to push up version
1
VERSION=2.0
81.1.4 by Jon Hill
Working packaging system and Makefile
2
84 by Jon Hill
Modifications to the install, including an uninstall and install in the make file. This is in preperation of turning the package into a deb package
3
default:
4
	python setup.py build
5
81.1.21 by Jon Hill
makefile mods
6
#test:
7
#	cd stk/test/; make
84 by Jon Hill
Modifications to the install, including an uninstall and install in the make file. This is in preperation of turning the package into a deb package
8
9
install:
81.1.22 by Jon Hill
More makefile mods
10
ifeq ($(origin BUILDING_DEBIAN),undefined)
81.1.15 by Jon Hill
Makefile tweaks
11
	python setup.py install --prefix=$(DESTDIR)/usr/local
81.1.22 by Jon Hill
More makefile mods
12
else
13
	python setup.py install --prefix=$(DESTDIR)/usr/local --install-layout=deb;
14
endif
84 by Jon Hill
Modifications to the install, including an uninstall and install in the make file. This is in preperation of turning the package into a deb package
15
81.1.31 by Jon Hill
mods to make and control file to get the stk to appear in package hits
16
uninstall:
97.1.3 by Jon Hill
Amending changelog
17
	rm -rf /usr/local/lib/python2.7/dist-packages/supertree_toolkit-*.egg-info/
81.1.31 by Jon Hill
mods to make and control file to get the stk to appear in package hits
18
	rm -rf /usr/local/lib/python2.7/dist-packages/stk*
19
	rm -rf /usr/local/lib/python2.7/dist-packages/p4
20
	rm -rf /usr/local/lib/python2.7/dist-packages/yapbib/
21
	rm -rf /usr/local/bin/stk*
22
	rm -rf /usr/local/share/stk
23
	rm -rf /usr/local/share/phyml
81.1.3 by Jon Hill
Makes a debian package
24
81.1.31 by Jon Hill
mods to make and control file to get the stk to appear in package hits
25
builddeb:
26
	python setup.py --command-packages=stdeb.command sdist_dsc
27
	cd deb_dist/supertree-toolkit-${VERSION}
28
	dpkg-buildpackage -rsudo -uc -us
81.1.3 by Jon Hill
Makes a debian package
29