@@ -16,4 +16,4 @@ def build():
|
||||
def install():
|
||||
kde5.install()
|
||||
|
||||
pisitools.dodoc("COPYING")
|
||||
pisitools.dodoc("COPYING")
|
||||
@@ -10,16 +10,16 @@
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Framework for searching and managing metadata</Summary>
|
||||
<Description>Baloo is a framework for searching and managing metada</Description>
|
||||
<Archive sha1sum="460f5f71f4bd507472d5a94e11354e425a1d105d" type="tarxz">http://download.kde.org/stable/plasma/5.3.2/baloo-5.9.2.tar.xz</Archive>
|
||||
<Archive sha1sum="6f2c689ab3e6d3550163bd26f3d510054dd6e9ef" type="tarxz">mirrors://kde/stable/frameworks/5.13/baloo-5.13.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>xapian-core-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kauth-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kcrash-devel</Dependency>
|
||||
@@ -28,7 +28,7 @@
|
||||
<Dependency>kidletime-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>solid-devel</Dependency>
|
||||
<Dependency>kfilemetadata-devel</Dependency>
|
||||
<Dependency versionFrom="5.13">kfilemetadata-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>kemoticons-devel</Dependency>
|
||||
<Dependency>kitemmodels-devel</Dependency>
|
||||
@@ -40,18 +40,18 @@
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>baloo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>xapian-core</Dependency>
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kdbusaddons</Dependency>
|
||||
<Dependency>kdbusaddons</Dependency>
|
||||
<Dependency>kauth</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
@@ -59,7 +59,7 @@
|
||||
<Dependency>kdelibs4-support</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>kidletime</Dependency>
|
||||
<Dependency>kio</Dependency>
|
||||
<Dependency>kio</Dependency>
|
||||
<Dependency>solid</Dependency>
|
||||
<Dependency>kfilemetadata</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -73,17 +73,17 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>baloo-devel</Name>
|
||||
<Summary>Development files for baloo-widgets</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">baloo</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>xapian-core-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kauth-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kcrash-devel</Dependency>
|
||||
@@ -102,6 +102,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-08-26</Date>
|
||||
<Version>5.13</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2015-07-01</Date>
|
||||
<Version>5.9.2</Version>
|
||||
@@ -115,6 +122,6 @@
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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 kde5
|
||||
|
||||
def setup():
|
||||
kde5.configure()
|
||||
|
||||
def build():
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
kde5.install()
|
||||
+14
-7
@@ -10,13 +10,13 @@
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE5 library for extracting meta data from files.</Summary>
|
||||
<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>
|
||||
<Archive sha1sum="29ec6733d6f8e5441bff7b886efcc880696c5137" type="tarxz">http://download.kde.org/stable/frameworks/5.13/kfilemetadata-5.13.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>ebook-tools-devel</Dependency>
|
||||
<Dependency>exiv2-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
@@ -51,7 +51,7 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>kfilemetadata-devel</Name>
|
||||
<Summary>Development files for kfilemetadata</Summary>
|
||||
@@ -69,11 +69,18 @@
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2015-08-26</Date>
|
||||
<Version>5.13</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2015-07-01</Date>
|
||||
<Version>5.9.2</Version>
|
||||
@@ -87,6 +94,6 @@
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -1,24 +0,0 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import cmaketools
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
|
||||
-DLIB_INSTALL_DIR=lib \
|
||||
-DPYTHON_EXECUTABLE=/usr/bin/python \
|
||||
-DBUILD_TESTING=OFF")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("COPYING-CMAKE-SCRIPTS", "COPYING.LGPL-3")
|
||||
|
||||
Reference in New Issue
Block a user