libxmlb: new package for fwupd

This commit is contained in:
suvari
2020-02-02 04:48:15 +03:00
parent 71ca2f34f3
commit 1a8d148c29
20 changed files with 960 additions and 161 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
#!/usr/bin/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 get
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
def setup():
mesontools.configure()
def build():
mesontools.build()
def check():
mesontools.build("test")
def install():
mesontools.install()
pisitools.dodoc("LICENSE", "README.md")
+64
View File
@@ -0,0 +1,64 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxmlb</Name>
<Homepage>https://github.com/hughsie/libxmlb</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>LGPL2.1</License>
<IsA>app:console</IsA>
<Summary>A library to help create and query binary XML blobs</Summary>
<Description>A library to help create and query binary XML blobs</Description>
<Archive sha1sum="0d1401cb33e304d7a7ee87f53e7997fd35c11b96" type="tarxz">https://people.freedesktop.org/~hughsient/releases/libxmlb-0.1.14.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>docbook-xsl</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxmlb</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/gir-1.0/Xmlb-1.0.gir</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>libxmlb-devel</Name>
<RuntimeDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency release="current">libxmlb</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-02-02</Date>
<Version>0.1.14</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>