summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5886e4c)
raw | patch | inline | side by side (parent: 5886e4c)
author | Sebastian Harl <sh@tokkee.org> | |
Sun, 30 Mar 2008 12:39:00 +0000 (14:39 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sun, 30 Mar 2008 12:39:00 +0000 (14:39 +0200) |
debian/rules | patch | blob | history |
diff --git a/debian/rules b/debian/rules
index d9603aa5936369a84e11b50180a9eee9abcf5397..c8dfb93d7ef64f694037f6dba8530460dd266862 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O2
endif
+config.status: configure
+ dh_testdir
+ ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
+ --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc \
+ CFLAGS="$(CFLAGS)" LIBS="-lncursesw"
+
build: build-stamp
-build-stamp:
+build-stamp: config.status
dh_testdir
- CFLAGS="$(CFLAGS)" $(MAKE) all doc LDLIBS=-lncursesw
+ $(MAKE) all doc
touch build-stamp
$(MAKE) clean
+ rm -f config.h config.log config.make config.status
+ rm -rf manual.html-chunked/
+ rm -f manual.pdf manual.html manual.toc
+
dh_clean
install: build
dh_clean -k
dh_installdirs
- $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig \
- prefix=/usr mandir=/usr/share/man
+ $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig
mkdir -p debian/tig/etc/bash_completion.d
cp contrib/tig-completion.bash debian/tig/etc/bash_completion.d/tig