rules
47 lines
| 1.8 KiB
| text/plain
|
TextLexer
Gregory Szorc
|
r38029 | #!/usr/bin/make -f | ||
# Uncomment this to turn on verbose mode. | ||||
# export DH_VERBOSE=1 | ||||
CPUS=$(shell cat /proc/cpuinfo | grep -E ^processor | wc -l) | ||||
Denis Laxalde
|
r43615 | export HGPYTHON3=1 | ||
export PYTHON=python3 | ||||
Gregory Szorc
|
r38029 | %: | ||
Denis Laxalde
|
r43615 | dh $@ --with python3 | ||
Gregory Szorc
|
r38029 | |||
override_dh_auto_test: | ||||
http_proxy='' dh_auto_test -- TESTFLAGS="-j$(CPUS)" | ||||
Denis Laxalde
|
r43615 | override_dh_python3: | ||
Denis Laxalde
|
r43618 | dh_python3 --shebang=/usr/bin/python3 | ||
Gregory Szorc
|
r38029 | find debian/mercurial/usr/share -type d -empty -delete | ||
override_dh_install: | ||||
Denis Laxalde
|
r43615 | python3 setup.py install --root "$(CURDIR)"/debian/mercurial --install-layout=deb | ||
Gregory Szorc
|
r38029 | # chg | ||
make -C contrib/chg \ | ||||
DESTDIR="$(CURDIR)"/debian/mercurial \ | ||||
PREFIX=/usr \ | ||||
clean install | ||||
# remove arch-independent python stuff | ||||
find "$(CURDIR)"/debian/mercurial/usr/lib \ | ||||
! -name '*.so' ! -type d -delete , \ | ||||
-type d -empty -delete | ||||
Denis Laxalde
|
r43615 | python3 setup.py install --root "$(CURDIR)/debian/mercurial-common" --install-layout=deb | ||
Gregory Szorc
|
r38029 | make install-doc PREFIX="$(CURDIR)"/debian/mercurial-common/usr | ||
# remove arch-dependent python stuff | ||||
find "$(CURDIR)"/debian/mercurial-common/usr/lib \ | ||||
-name '*.so' ! -type d -delete , \ | ||||
-type d -empty -delete | ||||
cp contrib/hg-ssh "$(CURDIR)"/debian/mercurial-common/usr/bin | ||||
mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/mercurial | ||||
cp contrib/hgk "$(CURDIR)"/debian/mercurial-common/usr/share/mercurial | ||||
mkdir -p "$(CURDIR)"/debian/mercurial-common/etc/mercurial/hgrc.d/ | ||||
cp contrib/packaging/debian/*.rc "$(CURDIR)"/debian/mercurial-common/etc/mercurial/hgrc.d/ | ||||
# completions | ||||
mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/bash-completion/completions | ||||
cp contrib/bash_completion "$(CURDIR)"/debian/mercurial-common/usr/share/bash-completion/completions/hg | ||||
mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/zsh/vendor-completions | ||||
cp contrib/zsh_completion "$(CURDIR)"/debian/mercurial-common/usr/share/zsh/vendor-completions/_hg | ||||
rm "$(CURDIR)"/debian/mercurial-common/usr/bin/hg | ||||