# HG changeset patch # User melunko # Date 1176409053 -3600 # Node ID e33d727356b3ebb341398efd9d92587b257fbdfe # Parent 861b177c521d446adf4072496e85b0710b871176 [svn r541] Added debian package generation diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/changelog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/changelog Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,6 @@ +gmythstream-client (0.1) unstable; urgency=low + + * Initial Package. + + -- Hallyson Melo Thu, 12 Apr 2007 17:26:16 -0300 + diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/compat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/compat Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,1 @@ +4 diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/control --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/control Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,18 @@ +Source: gmythstream-client +Priority: optional +Maintainer: Hallyson Melo +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libglib2.0-dev +Standards-Version: 3.6.2 +Section: libs + +Package: gmythstream-client +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libglib2.0-0 +Description: This library can be used to access gmythstream server. + +Package: gmythstream-client-dev +Section: libdevel +Architecture: any +Depends: gmythstream-client (= ${Source-Version}), libglib2.0-dev +Description: The gmythstream-client library library development files. diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/gmythstream-client-dev.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/gmythstream-client-dev.install Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,6 @@ +debian/tmp/usr/include/* +debian/tmp/usr/lib/lib*.a +debian/tmp/usr/lib/lib*.so +debian/tmp/usr/lib/pkgconfig/* +debian/tmp/usr/lib/*.la +debian/tmp/usr/share/pkgconfig/* diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/gmythstream-client.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/gmythstream-client.install Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,1 @@ +debian/tmp/usr/lib/lib*.so.* diff -r 861b177c521d -r e33d727356b3 gmyth-stream/client/debian/rules --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmyth-stream/client/debian/rules Thu Apr 12 21:17:33 2007 +0100 @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk + +# debian package version +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) + +maint: debian/control + +common_conf_flags = \ + --enable-debug + +# FIXME: should disable docs for arch only builds +DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags) + + +.PHONY: maint