File: rules

package info (click to toggle)
r-cran-hunspell 3.0.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,124 kB
  • sloc: cpp: 1,138; sh: 13; makefile: 8
file content (15 lines) | stat: -rwxr-xr-x 401 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

%:
	dh $@ --buildsystem R

override_dh_auto_build:
	# FIXME: For the moment hack missing header files in here
	# Once we are sure that package build file bug report against
	# libhunspell-dev to include those missing header files
	cp -a debian/hunspell src
	dh_auto_build

override_dh_fixperms:
	dh_fixperms
	find debian \( -name "*.dic" -o -name "*.aff" \) -exec chmod -x \{\} \;