summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2017-09-11 10:32:24 +0200
committerDidier Raboud <odyx@debian.org>2017-09-11 10:32:24 +0200
commit65cf313e8210a46ba1a9b78743b14c1ad25fcb67 (patch)
treea0356d1d3041edd0407d43c4ceece8993b66ef59 /debian
parentfcd6aa3adfacc7914455ccd229682e009a06c447 (diff)
Initial packaging
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control31
-rw-r--r--debian/copyright28
-rw-r--r--debian/libsdl-kitchensink-dev.install2
-rw-r--r--debian/libsdl-kitchensink.install1
-rwxr-xr-xdebian/rules9
-rw-r--r--debian/source/format1
8 files changed, 78 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..039cc7f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+sdl-kitchensink (0.0.6-1~OdyX0) UNRELEASED; urgency=medium
+
+ * Initial release. (Closes: #XXXXXX)
+
+ -- Didier Raboud <odyx@debian.org> Mon, 11 Sep 2017 09:20:31 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7d918de
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: sdl-kitchensink
+Section: devel
+Priority: extra
+Maintainer: Didier Raboud <odyx@debian.org>
+Build-Depends:
+ debhelper (>= 10.2.5~),
+ libsdl2-dev,
+ libavcodec-dev,
+ libavdevice-dev,
+ libavfilter-dev,
+ libavformat-dev,
+ libavresample-dev,
+ libavutil-dev,
+ libswresample-dev,
+ libswscale-dev,
+ libpostproc-dev,
+ libass-dev,
+Standards-Version: 4.1.0
+Homepage: https://github.com/katajakasa/SDL_kitchensink
+
+Package: libsdl-kitchensink
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description:
+
+Package: libsdl-kitchensink-dev
+Architecture: any
+Section: libdevel
+Depends:
+ ${misc:Depends}
+Description:
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..76bf7f1
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name:
+Upstream-Contact:
+Source:
+
+Files: debian/*
+Copyright: 2017 Didier Raboud <odyx@debian.org>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+
diff --git a/debian/libsdl-kitchensink-dev.install b/debian/libsdl-kitchensink-dev.install
new file mode 100644
index 0000000..b484140
--- /dev/null
+++ b/debian/libsdl-kitchensink-dev.install
@@ -0,0 +1,2 @@
+usr/include/kitchensink/*.h
+usr/lib/libSDL_kitchensink_static.a
diff --git a/debian/libsdl-kitchensink.install b/debian/libsdl-kitchensink.install
new file mode 100644
index 0000000..5c0ba22
--- /dev/null
+++ b/debian/libsdl-kitchensink.install
@@ -0,0 +1 @@
+usr/lib/libSDL_kitchensink.so
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..05a69f1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
+%:
+ dh $@
+
+override_dh_auto_configure:
+ dh_auto_configure -- -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/${DEB_HOST_MULTIARCH} \
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)