File: rules

package info (click to toggle)
cycle 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: python: 1,987; makefile: 23
file content (19 lines) | stat: -rwxr-xr-x 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

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

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build
	if [ -d debian/msg ] ; then cd debian/msg; make ; fi

override_dh_clean:
	if [ -d debian/msg ] ; then cd debian/msg; make clean; fi
	dh_clean

override_dh_install:
	dh_install
	if [ -d debian/msg ] ; then cd debian/msg; make install DESTDIR=../cycle/usr/share/locale/ ; fi