Merge pull request #6925 from 4fury/master

gexiv2:update
This commit is contained in:
Ertuğrul Erata
2019-06-23 01:30:33 +03:00
committed by GitHub
2 changed files with 22 additions and 8 deletions
+4 -4
View File
@@ -4,17 +4,17 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure() shelltools.system("meson build --prefix=/usr -Dgtk_doc=true")
def build(): def build():
autotools.make() shelltools.system("ninja -C build")
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) shelltools.system("DESTDIR=%s ninja -C build install" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
+17 -3
View File
@@ -12,11 +12,18 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>GObject-based wrapper around the Exiv2 library</Summary> <Summary>GObject-based wrapper around the Exiv2 library</Summary>
<Description>GObject-based wrapper around the Exiv2 library</Description> <Description>GObject-based wrapper around the Exiv2 library</Description>
<Archive sha1sum="8caafc5557a9acda3fcc023ee0e55d342b167cff" type="tarxz">https://download.gnome.org/sources/gexiv2/0.10/gexiv2-0.10.8.tar.xz</Archive> <Archive sha1sum="52a948a9813d2231bbd63ba955c7b5656f2b6635" type="tarxz">
http://ftp.acc.umu.se/pub/gnome/sources/gexiv2/0.11/gexiv2-0.11.0.tar.xz
</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>python-six</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>exiv2-devel</Dependency> <Dependency>docbook-xsl</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency> <Dependency>gobject-introspection-devel</Dependency>
<Dependency>exiv2-devel</Dependency>
<Dependency>vala-devel</Dependency> <Dependency>vala-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -32,7 +39,7 @@
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path> <Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/gtk-doc/html</Path> <Path fileType="doc">/usr/share/gtk-doc/html</Path>
<Path fileType="data">/usr/share/vapi</Path> <Path fileType="data">/usr/share/vala/vapi</Path>
</Files> </Files>
</Package> </Package>
@@ -51,6 +58,13 @@
</Package> </Package>
<History> <History>
<Update release="3">
<Date>2019-06-18</Date>
<Version>0.11.0</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="2"> <Update release="2">
<Date>2018-08-14</Date> <Date>2018-08-14</Date>
<Version>0.10.8</Version> <Version>0.10.8</Version>