File: rules

package info (click to toggle)
lua-sandbox-extensions 0~git20161128-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,596 kB
  • ctags: 1,458
  • sloc: ansic: 4,402; cpp: 2,102; makefile: 8
file content (13 lines) | stat: -rwxr-xr-x 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_configure:
	# Don't run cmake, we just want to copy .lua files for now

override_dh_install:
	dh_install
	for f in $$(find . -name "*.lua" | grep -v /tests/ | grep -v gen_gh); do \
	    install -m 644 -D $$f debian/lua-sandbox-extensions/usr/share/luasandbox/$${f#./*/}; \
	done