summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-09 13:35:10 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-09 13:35:10 +0000
commit2385a5c4e83295921ec10e59bb2b2b66a492bb47 (patch)
tree8ab2f0d787fa89f8cff5c0f93de0c228f931ca96 /debian/rules
parent6f39875e07907cb136485649b9fbe4da73d9aae7 (diff)
parent4b27d4bc0f0ac7fbe944f67d44ca4e71c2ba58e5 (diff)
Fix merge.
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 000000000..3320087a5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+override_dh_auto_configure:
+ ./waf --nocache configure --prefix=/usr --static
+
+override_dh_auto_build:
+ ./waf --nocache build
+
+override_dh_auto_install:
+ ./waf --nocache install --destdir=debian/dvdomatic
+