File: rules

package info (click to toggle)
catfish 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 992 kB
  • sloc: python: 2,239; sh: 44; xml: 16; makefile: 9
file content (16 lines) | stat: -rwxr-xr-x 322 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

DESTDIR := ${CURDIR}/debian/catfish

%:
	dh $@ --with python3

override_dh_auto_configure:
	./configure --prefix=/usr --python=python3

override_dh_auto_install:
	dh_auto_install
	find $(DESTDIR)/usr/share -type f -exec chmod a-x '{}' ';'