diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..60d9232 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libtess2 (1.0.1) stable; urgency=medium + + * Initial Release. + + -- Paul Morelle Tue, 26 Apr 2019 00:36:50 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..da53c97 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: libtess2 +Priority: optional +Maintainer: Paul Morelle +Build-Depends: debhelper (>= 9), + libglew-dev, + libglfw3-dev, + libglu1-mesa-dev, + pkg-config, + premake4 +Standards-Version: 3.9.8 +Section: libs +Homepage: https://github.com/memononen/libtess2 +Vcs-Git: https://github.com/memononen/libtess2.git +Vcs-Browser: https://github.com/memononen/libtess2 + +Package: libtess2-dev +Section: libdevel +Architecture: any +Depends: libglew-dev, + libglfw3-dev, + libglu1-mesa +Description: Game and tools oriented refactored version of GLU tesselator diff --git a/debian/libtess2-dev.install b/debian/libtess2-dev.install new file mode 100644 index 0000000..aa335dd --- /dev/null +++ b/debian/libtess2-dev.install @@ -0,0 +1,3 @@ +Build/libtess2.a usr/lib +Build/copyright usr/share/doc/libtess2-dev +Include/tesselator.h usr/include diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..48ead60 --- /dev/null +++ b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + + +# 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 + + +%: + dh $@ + + +override_dh_auto_build: + premake4 gmake + make -C Build + cp LICENSE.txt Build/copyright