summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorwilliam <william@25tandclement.com>2013-12-09 21:20:00 -0800
committerwilliam <william@25tandclement.com>2013-12-09 21:20:00 -0800
commit9db41e05d9a00eb906b530b38bcaaa068d40c88b (patch)
tree71312908cae28d36543f8881bc675f8867380eee /debian/rules
parentfbd452885694da66156e95f671ab364cfe157bef (diff)
downloadluaossl-9db41e05d9a00eb906b530b38bcaaa068d40c88b.tar.gz
luaossl-9db41e05d9a00eb906b530b38bcaaa068d40c88b.tar.bz2
luaossl-9db41e05d9a00eb906b530b38bcaaa068d40c88b.zip
add debian packaging files
Diffstat (limited to '')
-rwxr-xr-xdebian/rules26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..10c05a8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,26 @@
1#!/usr/bin/make -f
2
3CFLAGS := -O3 -g -fstack-protector --param=ssp-buffer-size=4
4
5DESTDIR=debian/tmp
6prefix=/usr
7build=liblua5.1-openssl liblua5.2-openssl
8install=$(addsuffix -install,$(build))
9
10%:
11 dh $@
12
13override_dh_auto_configure:
14 true
15
16override_dh_auto_build:
17 make DESTDIR=$(DESTDIR) prefix=$(prefix) $(build)
18
19override_dh_auto_install:
20 make DESTDIR=$(DESTDIR) prefix=$(prefix) $(install)
21
22override_dh_auto_clean:
23 make clean
24
25override_dh_auto_test:
26 true