diff options
author | Christoph Kluenter <ckluente@thouthworks.com> | 2014-09-09 09:47:22 +0200 |
---|---|---|
committer | Christoph Kluenter <ckluente@thouthworks.com> | 2014-09-09 09:51:40 +0200 |
commit | 23dbfdfa519b671064145dcf2ee6c1296a4c29da (patch) | |
tree | 26bcb92943dff9d623b18ca66776e9ff93a5b6b0 | |
parent | 10112b7d862f5d2d24b6c295e08c4ebd73d54ee2 (diff) |
fix building the debian packages with ./debian in the root
-rw-r--r-- | debian/changelog (renamed from service/debian/changelog) | 0 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control (renamed from service/debian/control) | 0 | ||||
-rw-r--r-- | debian/copyright | 21 | ||||
-rw-r--r-- | debian/docs | 1 | ||||
-rwxr-xr-x | debian/rules | 32 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 56 insertions, 0 deletions
diff --git a/service/debian/changelog b/debian/changelog index 529ea5be..529ea5be 100644 --- a/service/debian/changelog +++ b/debian/changelog diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..ec635144 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/service/debian/control b/debian/control index f7f36e2a..f7f36e2a 100644 --- a/service/debian/control +++ b/debian/control diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..d11a09ce --- /dev/null +++ b/debian/copyright @@ -0,0 +1,21 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pixelated-user-agent +Source: <http://pixelated-project.org> + +Files: * +Copyright: 2014 Thoughtworks Inc. +License: AGPL-3+ + +License: AGPL + Pixelated is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Pixelated is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..b43bf86b --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..b6082fa2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#DH_VERBOSE = 1 + +# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/* +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +# main packaging script based on dh7 syntax +%: + dh $@ --sourcedirectory=service + +# debmake generated override targets +# This is example for Cmake (See http://bugs.debian.org/641051 ) +#override_dh_auto_configure: +# dh_auto_configure -- \ +# -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) + + + + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..89ae9db8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |