thunderbird: version bump to 91.8.1, new packages: ogre-next, openvr, rapidjson

This commit is contained in:
suvari
2022-05-01 20:31:46 +03:00
parent acf3bc3309
commit 1dec307244
17 changed files with 7030 additions and 6253 deletions
+30
View File
@@ -0,0 +1,30 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
shelltools.system("cmake .. -DUSE_INTERNAL_TINYXML=OFF \
-DINSTALL_LIBENCFS=ON \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-G Ninja")
def build():
shelltools.cd("build")
shelltools.system("ninja")
def install():
shelltools.cd("build")
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("COPYING", "README*")
+107
View File
@@ -0,0 +1,107 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>ogre-next</Name>
<Homepage>https://github.com/OGRECave/ogre-next</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<IsA>library</IsA>
<Summary>Scene-oriented, flexible 3D engine written in C++</Summary>
<Description>Ogre-Next is a 3D graphics rendering engine. Not to be confused with a game engine which provides Networking, Sound, Physics, etc.</Description>
<Archive sha1sum="6b670ef03e4f001cbedb72b8a8e320a1f016b063" type="targz">https://github.com/OGRECave/ogre-next/archive/refs/tags/v2.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>git</Dependency>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>libXt-devel</Dependency>
<Dependency>vulkan-devel</Dependency>
<Dependency>openvr-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>dejavu-fonts</Dependency>
<Dependency>libXaw-devel</Dependency>
<Dependency>cppunit-devel</Dependency>
<Dependency>libsdl2-devel</Dependency>
<Dependency>zziplib-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>tinyxml-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>mesa-glu-devel</Dependency>
<Dependency>graphviz-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>rapidjson-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>FreeImage-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>ogre-next</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>mesa</Dependency>
<Dependency>libXt</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>openvr</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXaw</Dependency>
<Dependency>openssl</Dependency>
<Dependency>tinyxml</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>cppunit</Dependency>
<Dependency>libsdl2</Dependency>
<Dependency>zziplib</Dependency>
<Dependency>freetype</Dependency>
<Dependency>graphviz</Dependency>
<Dependency>mesa-glu</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>FreeImage</Dependency>
<Dependency>rapidjson</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>dejavu-fonts</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/OGRE</Path>
<Path fileType="library">/usr/lib/libOgreHlmsPbs.so*</Path>
<Path fileType="library">/usr/lib/libOgreMeshLodGenerator.so*</Path>
<Path fileType="library">/usr/lib/libOgreOverlay.so*</Path>
<Path fileType="library">/usr/lib/libOgreSceneFormat.so*</Path>
<Path fileType="library">/usr/lib/libOgreMain.so*</Path>
<Path fileType="library">/usr/lib/libOgreHlmsUnlit.so*</Path>
<Path fileType="data">/usr/share/OGRE</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>ogre-next-devel</Name>
<Summary>Development files for ogre-next</Summary>
<RuntimeDependencies>
<Dependency release="current">ogre-next</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/OGRE/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-04-30</Date>
<Version>2.3.0</Version>
<Comment>First release.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>ogre-next</Name>
<Summary xml:lang="tr">C++ ile yazılmış, sahne odaklı, esnek 3B motor</Summary>
<Description xml:lang="tr">Ogre-Next, bir 3D grafik işleme motorudur. Ağ, Ses, Fizik vb. Sağlayan bir oyun motoruyla karıştırılmamalıdır.</Description>
</Source>
</PISI>