mirror of https://github.com/mosra/magnum.git
9 changed files with 99 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||||||
|
magnum (1.0-1) UNRELEASED; urgency=low |
||||||
|
|
||||||
|
* Latest upstream version |
||||||
|
|
||||||
|
-- Vladimír Vondruš <mosra@centrum.cz> Fri, 31 Jan 2014 12:20:58 +0100 |
||||||
@ -0,0 +1,25 @@ |
|||||||
|
Source: magnum |
||||||
|
Priority: optional |
||||||
|
Maintainer: Vladimír Vondruš <mosra@centrum.cz> |
||||||
|
Build-Depends: debhelper (>= 9), cmake (>= 2.8.8) |
||||||
|
Standards-Version: 3.9.2 |
||||||
|
Section: libs |
||||||
|
Homepage: http://mosra.cz/blog/magnum.php |
||||||
|
Vcs-Git: git://github.com/mosra/magnum.git |
||||||
|
Vcs-Browser: https://github.com/mosra/magnum |
||||||
|
|
||||||
|
Package: magnum-dev |
||||||
|
Section: libdevel |
||||||
|
Architecture: any |
||||||
|
Depends: magnum (= ${binary:Version}), corrade-dev, libgl-dev, freeglut3-dev, libopenal-dev |
||||||
|
Description: Magnum development files |
||||||
|
Headers and tools needed for developing with Magnum. |
||||||
|
|
||||||
|
Package: magnum |
||||||
|
Section: libs |
||||||
|
Architecture: any |
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, corrage, libgl1, freeglut3, libopenal1 |
||||||
|
Description: C++11 and OpenGL 2D/3D graphics engine |
||||||
|
Magnum is 2D/3D graphics engine written in C++11 and modern OpenGL. Its goal |
||||||
|
is to simplify low-level graphics development and interaction with OpenGL |
||||||
|
using recent C++11 features and to abstract away platform-specific issues. |
||||||
@ -0,0 +1,25 @@ |
|||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ |
||||||
|
Upstream-Name: Magnum |
||||||
|
Upstream-Contact: Vladimír Vondruš <mosra@centrum.cz> |
||||||
|
Source: https://github.com/mosra/magnum |
||||||
|
|
||||||
|
Files: * |
||||||
|
Copyright: 2010-2014 Vladimír Vondruš <mosra@centrum.cz> |
||||||
|
License: Expat |
||||||
|
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. |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
usr/include/Magnum/* |
||||||
|
usr/include/MagnumExternal/* |
||||||
|
usr/include/MagnumPlugins/* |
||||||
|
usr/lib*/lib*.so |
||||||
|
usr/lib*/lib*.a |
||||||
|
usr/share/cmake* |
||||||
@ -0,0 +1,3 @@ |
|||||||
|
usr/bin/* |
||||||
|
usr/lib*/magnum/* |
||||||
|
usr/lib*/lib*.so.* |
||||||
@ -0,0 +1,19 @@ |
|||||||
|
#!/usr/bin/make -f |
||||||
|
|
||||||
|
%: |
||||||
|
dh $@ --parallel |
||||||
|
|
||||||
|
override_dh_auto_configure: |
||||||
|
dh_auto_configure -- \ |
||||||
|
-DWITH_AUDIO=ON \ |
||||||
|
-DWITH_GLUTAPPLICATION=ON \ |
||||||
|
-DWITH_GLXAPPLICATION=ON \ |
||||||
|
-DWITH_WINDOWLESSGLXAPPLICATION=ON \ |
||||||
|
-DWITH_MAGNUMFONT=ON \ |
||||||
|
-DWITH_MAGNUMFONTCONVERTER=ON \ |
||||||
|
-DWITH_TGAIMAGECONVERTER=ON \ |
||||||
|
-DWITH_TGAIMPORTER=ON \ |
||||||
|
-DWITH_WAVAUDIOIMPORTER=ON \ |
||||||
|
-DWITH_DISTANCEFIELDCONVERTER=ON \ |
||||||
|
-DWITH_FONTCONVERTER=ON \ |
||||||
|
-DWITH_MAGNUMINFO=ON |
||||||
Loading…
Reference in new issue