File: rules

package info (click to toggle)
gff2aplot 2.0-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,800 kB
  • ctags: 347
  • sloc: perl: 5,373; ansic: 806; makefile: 112
file content (15 lines) | stat: -rwxr-xr-x 374 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f
# debian/rules file for gff2aplot using dh
# Andreas Tille <tille@debian.org>
# GPL

%:
	dh $@

# Upstream is missing to clean some files
override_dh_auto_clean:
	rm -f src/ali2gff/ali2gff bin/ali2gff

# We need to rename some *.pl files
override_dh_auto_install:
	for script in `find bin -name "*.pl"` ; do mv $$script bin/`basename $$script .pl` ; done