-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
libtess2 (1.0.1) stable; urgency=medium | ||
|
||
* Initial Release. | ||
|
||
-- Paul Morelle <[email protected]> Tue, 26 Apr 2019 00:36:50 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Source: libtess2 | ||
Priority: optional | ||
Maintainer: Paul Morelle <[email protected]> | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Build/libtess2.a usr/lib | ||
Build/copyright usr/share/doc/libtess2-dev | ||
Include/tesselator.h usr/include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |