File: rules

package info (click to toggle)
r-cran-desolve 1.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,592 kB
  • sloc: fortran: 18,729; ansic: 4,956; makefile: 11
file content (14 lines) | stat: -rwxr-xr-x 510 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

%:
	dh $@ --buildsystem R

override_dh_install:
	dh_install
	find debian -name "*.R" -executable -exec chmod -x \{\} \;
	find debian -name "*.f" -executable -exec chmod -x \{\} \;
	find debian -name "*.c" -executable -exec chmod -x \{\} \;
	find debian -name "*.gz" -executable -exec chmod -x \{\} \;
	find debian -name "*.Rnw" -executable -exec chmod -x \{\} \;
	find debian -name "*.RData" -executable -exec chmod -x \{\} \;
	find debian -name CITATION -executable -exec chmod -x \{\} \;