diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-19 16:39:07 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-19 16:39:07 +0100 |
commit | 7caa5b1b4091d63243c29d92361c35edbf11cf31 (patch) | |
tree | 1ba61d129a2dcae6f8780ead88b0fed5d3daaf51 /debian/rules | |
parent | 039a657df2b63b982d33b29715850485405769d3 (diff) | |
download | sciteco-7caa5b1b4091d63243c29d92361c35edbf11cf31.tar.gz |
debianized SciTECO
* prepared for upload to Ubuntu PPA
* debian package will not be in autoconf source distro
* will only build as a non-native package based on a source bundle
that contains scintilla, scinterm and has patches applied
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7b7396b --- /dev/null +++ b/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ -Dsciteco + +build: + dh_testdir + dh_auto_build -Dscintilla/scinterm + dh_auto_configure -Dsciteco -- \ + --enable-bootstrap \ + --with-scintilla=../scintilla \ + --with-interface=ncurses + dh_auto_build -Dsciteco + touch $@ + +clean: + dh_testdir + dh_auto_clean -Dscintilla/scinterm + dh_auto_clean -Dsciteco + dh_clean |