kfilemetadata and deps fixed.
This commit is contained in:
@@ -15,12 +15,13 @@
|
||||
<Description>KDE library for extracting meta data from files.</Description>
|
||||
<Archive sha1sum="9217d8ab8adda24e34c1ab2b7e11add09a0a57d6" type="tarxz">http://download.kde.org/stable/plasma/5.3.2/kfilemetadata-5.9.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>ebook-tools</Dependency><!--1-->
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>ebook-tools-devel</Dependency>
|
||||
<Dependency>exiv2-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency><!--2-->
|
||||
<Dependency>poppler-qt5</Dependency><!--3-->
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>poppler-qt5-devel</Dependency>
|
||||
<Dependency>karchive-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
@@ -55,8 +56,15 @@
|
||||
<Name>kfilemetadata-devel</Name>
|
||||
<Summary>Development files for kfilemetadata</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency release="current">kfilemetadata</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>ebook-tools-devel</Dependency>
|
||||
<Dependency>exiv2-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>poppler-qt5-devel</Dependency>
|
||||
<Dependency>karchive-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
|
||||
@@ -12,11 +12,19 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for reading and editing audio meta data</Summary>
|
||||
<Description>TagLib is a library for reading and editing the meta data of several popular audio formats.</Description>
|
||||
<Archive sha1sum="4fa426c453297e62c1d1eff64a46e76ed8bebb45" type="targz">http://taglib.github.io/releases/taglib-1.9.1.tar.gz</Archive>
|
||||
<Archive sha1sum="4fa426c453297e62c1d1eff64a46e76ed8bebb45" type="targz">http://taglib.github.io/releases/taglib-1.9.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>taglib</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
<Archive sha1sum="1f10bef62c9125cf804366134e486a58308f07ff" type="targz">mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libzip-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">ebook-tools-0.2.1-libzip_pkgconfig.patch</Patch>
|
||||
@@ -27,6 +29,7 @@
|
||||
<Name>ebook-tools</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libzip</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
@@ -39,6 +42,7 @@
|
||||
<Name>ebook-tools-devel</Name>
|
||||
<Summary>Development files for ebook-tools</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency release="current">ebook-tools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>util.archive</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
# fix test return state
|
||||
#pisitools.dosed("regress/open_nonarchive.test", "19/2", "19/0")
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS","NEWS","README")
|
||||
|
||||
# preserve old header path for compatibility
|
||||
pisitools.dosym("/usr/lib/libzip/include/zipconf.h", "/usr/include/zipconf.h")
|
||||
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libzip</Name>
|
||||
<Homepage>http://www.nih.at/libzip/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A C library for reading, creating, and modifying zip archives</Summary>
|
||||
<Description>libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives.</Description>
|
||||
<Archive sha1sum="5dcd88d0894b0afe29f7b5cab9d43be13ecfbffc" type="targz">http://www.nih.at/libzip/libzip-1.0.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libzip</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libzip-devel</Name>
|
||||
<Summary>Development files for libzip</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency release="current">libzip</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-07-28</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>0.11.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-02-04</Date>
|
||||
<Version>0.11.2</Version>
|
||||
<Comment>preserve old header path for compatibility.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>0.11.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-09</Date>
|
||||
<Version>0.10.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libzip</Name>
|
||||
<Summary xml:lang="tr">Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı</Summary>
|
||||
<Description xml:lang="tr">libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libzip-devel</Name>
|
||||
<Summary xml:lang="tr">libzip için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user