Added gcompris-qt
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.system("")
|
||||
shelltools.system("cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DQML_BOX2D_LIBRARY=/usr/lib/qt/qml/Box2D.2.0")
|
||||
|
||||
def build():
|
||||
shelltools.system("make -C build")
|
||||
|
||||
def install():
|
||||
shelltools.system("make -C build DESTDIR=%s" % get.installDIR() + " install")
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gcompris-qt</Name>
|
||||
<Homepage>https://gcompris.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Packager>
|
||||
<License>AGPLv3</License>
|
||||
<Summary>Educational software suite comprising of numerous activities for children aged 2 to 10</Summary>
|
||||
<Description>Educational software suite comprising of numerous activities for children aged 2 to 10</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>qml-box2d</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>qt5-graphicaleffects</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>qt5-multimedia-devel</Dependency>
|
||||
<Dependency>qt5-quickcontrols</Dependency>
|
||||
<Dependency>qt5-sensors-devel</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-xmlpatterns-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="6a95ccca16dba7d0cb844d522122d023db44ccd3" type="tarxz">https://gcompris.net/download/qt/src/gcompris-qt-1.1.tar.xz</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>gcompris-qt</Name>
|
||||
<Summary>Educational software suite comprising of numerous activities for children aged 2 to 10</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
<Dependency>qml-box2d</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>qt5-graphicaleffects</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>qt5-multimedia</Dependency>
|
||||
<Dependency>qt5-quickcontrols</Dependency>
|
||||
<Dependency>qt5-sensors</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
<Dependency>qt5-xmlpatterns</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/gcompris-qt</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="info">/usr/share/metainfo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-04-24</Date>
|
||||
<Version>1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import qt5
|
||||
|
||||
def setup():
|
||||
qt5.configure()
|
||||
|
||||
def build():
|
||||
qt5.make()
|
||||
|
||||
def install():
|
||||
qt5.install()
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>qml-box2d</Name>
|
||||
<Homepage>https://github.com/qml-box2d/qml-box2d</Homepage>
|
||||
<Packager>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<Summary>Box2D QML plugin</Summary>
|
||||
<Description>Box2D QML plugin</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="a5e8b9d6488d2261b986444565e1f7b994e6dfb9" type="zip">https://github.com/qml-box2d/qml-box2d/archive/1b37be7d9dfb44ec6d520595a4e4f45f63717822.zip</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>qml-box2d</Name>
|
||||
<Summary>Box2D QML plugin</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-04-24</Date>
|
||||
<Version>20160102</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user