pyceo/debian/rules

45 lines
723 B
Plaintext
Raw Normal View History

2007-01-27 18:41:51 -05:00
#!/usr/bin/make -f
build:
python setup.py -q build
2007-12-10 00:37:43 -05:00
cd src && make
2007-01-27 18:41:51 -05:00
clean:
dh_testdir
dh_testroot
dh_clean
$(MAKE) -C src clean
python setup.py -q clean -a
2007-01-27 18:41:51 -05:00
install: build
dh_testdir
dh_testroot
dh_installdirs
python setup.py -q install --no-compile -O0 --root=debian/ceo
$(MAKE) -C src DESTDIR=$(PWD)/debian/ceo PREFIX=/usr install
2007-01-27 18:41:51 -05:00
binary-arch: build install
2007-01-27 18:41:51 -05:00
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
2007-01-27 18:41:51 -05:00
dh_installexamples
dh_install
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
dh_pysupport
2007-01-27 18:41:51 -05:00
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary-indep:
2007-01-27 18:41:51 -05:00
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install