graphene First release

This commit is contained in:
Rmys
2021-01-24 14:17:49 +03:00
committed by GitHub
parent e71a1e7451
commit 89f215e2be
3 changed files with 107 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
def setup():
mesontools.configure("-Dgtk_doc=true")
def build():
mesontools.build()
def install():
mesontools.install()
#shelltools.cd("..")
pisitools.dodoc("LICENSE*", "README*")
+76
View File
@@ -0,0 +1,76 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>graphene</Name>
<Homepage>https://ebassi.github.io/graphene/</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>A thin layer of graphic data types</Summary>
<Description>A thin layer of graphic data types</Description>
<Archive sha1sum="9557cd69649b51f575ae48c26e0669e83d5d2754" type="targz">https://github.com/ebassi/graphene/archive/1.10.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>graphene.patch</Patch>
<Patch level="1">graphene.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>graphene</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>graphene-devel</Name>
<Summary>Development files for graphene</Summary>
<RuntimeDependencies>
<Dependency release="current">graphene</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>graphene-docs</Name>
<Summary>Development files for graphene</Summary>
<RuntimeDependencies>
<Dependency release="current">graphene</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-01-23</Date>
<Version>1.10.2</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>graphene</Name>
<Summary xml:lang="tr">A thin layer of graphic data types</Summary>
<Description xml:lang="tr">A thin layer of graphic data types</Description>
</Source>
</PISI>