aboutsummaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 6a21d6e73ddaf4f8581730e00b0597d2ea76df5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/make -f

# Unset the environment variables set by dpkg-buildpackage. (This is
# necessary because distutils is brittle with compiler/linker flags
# set. Specifically, packages using f2py will break without this.)
unexport CPPFLAGS
unexport CFLAGS
unexport CXXFLAGS
unexport FFLAGS
unexport LDFLAGS

# custom version for vg version
VERSION = 1.9.0vg
PACKAGEVERSION = $(VERSION)+$(shell date +%Y%m%d%H%M%S)

PYVER = $(shell py3versions -r)

%:
	dh $@ --with python3

override_dh_auto_clean:
	dh_auto_clean
	rm -rf upstream/build

override_dh_auto_install:
	ls . */
	cd upstream && python3 setup.py install --root=../debian/ranger --install-layout=deb
	# link configuration
	dh_link \
		./usr/lib/$(PYVER)/dist-packages/ranger/config/commands.py    ./etc/ranger/config/commands.py \
		./usr/lib/$(PYVER)/dist-packages/ranger/config/rc.conf        ./etc/ranger/config/rc.conf     \
		./usr/lib/$(PYVER)/dist-packages/ranger/config/rifle.conf     ./etc/ranger/config/rifle.conf  \
		./usr/lib/$(PYVER)/dist-packages/ranger/data/scope.sh         ./etc/ranger/data/scope.sh      \
		./usr/lib/$(PYVER)/dist-packages/ranger/data/mime.types       ./etc/ranger/data/mime.types
	# avoid extra-license-file
	rm debian/ranger/usr/share/doc/ranger/CHANGELOG.md
	# tell lintian to not complain
	find debian/ranger -regex ".*/data/scope.sh" -exec chmod u+x {} \;
	ls . */

override_dh_auto_build:

override_dh_gencontrol:
	dh_gencontrol -- -v$(PACKAGEVERSION)