X-Git-Url: https://git.sesse.net/?p=itkacl;a=blobdiff_plain;f=python-itkacl-2.0%2Fdebian%2Frules;fp=python-itkacl-2.0%2Fdebian%2Frules;h=90fa9eade7c695be7a1b12759f1ce6e3f41d06cc;hp=0000000000000000000000000000000000000000;hb=984e5ade2fc82719cdb7404d4babc68755040055;hpb=d05444187cde892a36ba7f1345fa6f782f7cadd0 diff --git a/python-itkacl-2.0/debian/rules b/python-itkacl-2.0/debian/rules new file mode 100755 index 0000000..90fa9ea --- /dev/null +++ b/python-itkacl-2.0/debian/rules @@ -0,0 +1,35 @@ +#!/usr/bin/make -f + +clean: + dh_testdir + dh_clean + python setup.py clean + $(RM) -r build/ + $(RM) itkacl.py itkacl.pyc itkacl_wrap.c + +build: + python setup.py build_ext + +binary-indep: + +binary-arch: + dh_testroot + dh_prep + dh_installdirs + python setup.py install --root=debian/python-itkacl --install-layout=deb + dh_installdocs + dh_installchangelogs + dh_pysupport + dh_compress + dh_fixperms + dh_strip + dh_makeshlibs + dh_shlibdeps + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch + +.PHONY: clean build binary-indep binary-arch binary