File: rules

package info (click to toggle)
lua-posix 5.1.19-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,860 kB
  • sloc: sh: 11,073; ansic: 3,529; perl: 76; makefile: 62
file content (17 lines) | stat: -rwxr-xr-x 303 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

%:
		dh $@ --buildsystem=lua --with lua

override_dh_auto_configure:
	./configure --with-lua-suffix=5.1 \
		CFLAGS="`pkg-config lua5.1 ncurses --cflags`"
	dh_auto_configure

override_dh_auto_test:
	touch dummy.la
	dh_auto_test

override_dh_auto_clean:
	rm -f dummy.la
	dh_auto_clean