diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-07-14 19:26:31 -0600 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-15 11:38:24 -0700 |
commit | 7421abfdbdfb34ad2719ce4fcf720450918cc4fc (patch) | |
tree | 59e372570a0afdeb77b726762ca57d0dadd6de66 /debian/rules | |
parent | 49ce3d0c4e732bbabb7a2bda1d89d80eeb76d5b6 (diff) | |
download | git-7421abfdbdfb34ad2719ce4fcf720450918cc4fc.tar.gz |
[PATCH] Initial support for building a debian package (.deb)
It's not any harder to include debian package support than to include a
spec file so here is the setup to build the equivalent debian package.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'debian/rules')
-rw-r--r-- | debian/rules | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000000..9445101601 --- /dev/null +++ b/debian/rules @@ -0,0 +1,81 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -g -Wall +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +export CFLAGS + +PREFIX := /usr +MANDIR := /usr/share/man/ + +SRC := ./ +DOC := Documentation/ +DESTDIR := $(CURDIR)/debian/tmp +DOC_DESTDIR := $(DESTDIR)/usr/share/doc/git-core/ +MAN_DESTDIR := $(DESTDIR)/$(MANDIR) + +build: build-stamp +build-stamp: + dh_testdir + $(MAKE) all doc + touch debian/build-stamp + +debian-clean: + dh_testdir + dh_testroot + rm -f debian/build-stamp + dh_clean + +clean: debian-clean + $(MAKE) clean + +install: debian/build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + make dest=$(DESTDIR) prefix=$(PREFIX) mandir=$(MANDIR) install install-doc + + mkdir -p $(DOC_DESTDIR) + find $(DOC) '(' -name '*.txt' -o -name '*.html' ')' -exec install {} $(DOC_DESTDIR) ';' + + dh_install --sourcedir=$(DESTDIR) + +binary: + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: build clean binary install clean debian-clean |