[svn r541] Added debian package generation trunk
authormelunko
Thu Apr 12 21:17:33 2007 +0100 (2007-04-12)
branchtrunk
changeset 536e33d727356b3
parent 535 861b177c521d
child 537 7dacfb6cb424
[svn r541] Added debian package generation
gmyth-stream/client/debian/changelog
gmyth-stream/client/debian/compat
gmyth-stream/client/debian/control
gmyth-stream/client/debian/gmythstream-client-dev.install
gmyth-stream/client/debian/gmythstream-client.install
gmyth-stream/client/debian/rules
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gmyth-stream/client/debian/changelog	Thu Apr 12 21:17:33 2007 +0100
     1.3 @@ -0,0 +1,6 @@
     1.4 +gmythstream-client (0.1) unstable; urgency=low
     1.5 +
     1.6 +  * Initial Package.
     1.7 +
     1.8 + -- Hallyson Melo <hallyson.melo@indt.org.br>  Thu, 12 Apr 2007 17:26:16 -0300
     1.9 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/gmyth-stream/client/debian/compat	Thu Apr 12 21:17:33 2007 +0100
     2.3 @@ -0,0 +1,1 @@
     2.4 +4
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/gmyth-stream/client/debian/control	Thu Apr 12 21:17:33 2007 +0100
     3.3 @@ -0,0 +1,18 @@
     3.4 +Source: gmythstream-client
     3.5 +Priority: optional
     3.6 +Maintainer: Hallyson Melo <hallyson.melo@indt.org.br>
     3.7 +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libglib2.0-dev
     3.8 +Standards-Version: 3.6.2
     3.9 +Section: libs
    3.10 +
    3.11 +Package: gmythstream-client
    3.12 +Section: libs
    3.13 +Architecture: any
    3.14 +Depends: ${shlibs:Depends}, ${misc:Depends}, libglib2.0-0
    3.15 +Description: This library can be used to access gmythstream server.
    3.16 +
    3.17 +Package: gmythstream-client-dev
    3.18 +Section: libdevel
    3.19 +Architecture: any
    3.20 +Depends: gmythstream-client (= ${Source-Version}), libglib2.0-dev
    3.21 +Description: The gmythstream-client library library development files.
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/gmyth-stream/client/debian/gmythstream-client-dev.install	Thu Apr 12 21:17:33 2007 +0100
     4.3 @@ -0,0 +1,6 @@
     4.4 +debian/tmp/usr/include/*
     4.5 +debian/tmp/usr/lib/lib*.a
     4.6 +debian/tmp/usr/lib/lib*.so
     4.7 +debian/tmp/usr/lib/pkgconfig/*
     4.8 +debian/tmp/usr/lib/*.la
     4.9 +debian/tmp/usr/share/pkgconfig/*
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/gmyth-stream/client/debian/gmythstream-client.install	Thu Apr 12 21:17:33 2007 +0100
     5.3 @@ -0,0 +1,1 @@
     5.4 +debian/tmp/usr/lib/lib*.so.*
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/gmyth-stream/client/debian/rules	Thu Apr 12 21:17:33 2007 +0100
     6.3 @@ -0,0 +1,20 @@
     6.4 +#!/usr/bin/make -f
     6.5 +
     6.6 +include /usr/share/cdbs/1/rules/debhelper.mk
     6.7 +include /usr/share/cdbs/1/class/autotools.mk
     6.8 +include /usr/share/cdbs/1/rules/simple-patchsys.mk
     6.9 +include /usr/share/cdbs/1/rules/utils.mk
    6.10 +
    6.11 +# debian package version
    6.12 +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
    6.13 +
    6.14 +maint: debian/control
    6.15 +
    6.16 +common_conf_flags = \
    6.17 +	--enable-debug
    6.18 +
    6.19 +# FIXME: should disable docs for arch only builds
    6.20 +DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags)
    6.21 +
    6.22 +
    6.23 +.PHONY: maint