From 518bd4afa9103afcfd497ca10bbd2650e512f972 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Thu, 26 Apr 2018 00:41:07 +0300 Subject: [PATCH] libfm --- desktop/lxqt/libfm/actions.py | 36 ++++++++++++ desktop/lxqt/libfm/pspec.xml | 85 +++++++++++++++++++++++++++++ desktop/lxqt/libfm/translations.xml | 14 +++++ 3 files changed, 135 insertions(+) create mode 100755 desktop/lxqt/libfm/actions.py create mode 100755 desktop/lxqt/libfm/pspec.xml create mode 100755 desktop/lxqt/libfm/translations.xml diff --git a/desktop/lxqt/libfm/actions.py b/desktop/lxqt/libfm/actions.py new file mode 100755 index 0000000000..79024610c9 --- /dev/null +++ b/desktop/lxqt/libfm/actions.py @@ -0,0 +1,36 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import get +from pisi.actionsapi import pisitools +from pisi.actionsapi import autotools + +def setup(): + #shelltools.system("./autogen.sh") + autotools.configure("--prefix=/usr \ + --sysconfdir=/etc \ + --enable-udisks \ + --disable-static \ + --with-gtk=3 \ + --with-gnu-ld") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.remove("/usr/include/libfm") + pisitools.dodir("/usr/include/libfm") + pisitools.domove("/usr/include/libfm-1.0/*.*", "/usr/include/libfm") + pisitools.removeDir("/usr/include/libfm-1.0") + pisitools.remove("/usr/include/libfm/fm-version.h") + pisitools.remove("/usr/include/libfm/fm-extra.h") + pisitools.remove("/usr/include/libfm/fm-xml-file.h") + pisitools.remove("/usr/lib/libfm-extra*") + pisitools.remove("/usr/lib/pkgconfig/libfm-extra.pc") + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/desktop/lxqt/libfm/pspec.xml b/desktop/lxqt/libfm/pspec.xml new file mode 100755 index 0000000000..5771afc36a --- /dev/null +++ b/desktop/lxqt/libfm/pspec.xml @@ -0,0 +1,85 @@ + + + + libfm + http://www.lxde.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + lxqt + library + Core library of PCManFM file manager + libfm is a Core library of PCManFM file manager + mirrors://sourceforge/pcmanfm/PCManFM + Libfm (tarball release)/LibFM/libfm-1.2.5.tar.xz + + atk-devel + dbus-glib-devel + desktop-file-utils + gettext-devel + gst-plugins-base-devel + gtk-doc + gtk3-devel + intltool + libexif-devel + libxslt-devel + udisks2-devel + vala-devel + menu-cache-devel + + + + libfm + Development files for PCManFM + + atk + cairo + dbus-glib + gdk-pixbuf + glib2 + gtk3 + libexif + libfm-extra + menu-cache + pango + + + /etc + /usr/bin + /usr/lib/libfm-gtk.so* + /usr/lib/libfm.so* + /usr/lib/libfm/modules + /usr/lib/libfm-gtk* + /usr/share/applications + /usr/share/doc + /usr/share/libfm + /usr/share/locale + /usr/share/man + /usr/share/mime + + + + libfm-devel + Development headers for libfm + + glib2-devel + gtk3-devel + libfm + + + /usr/include/libfm + /usr/lib/pkgconfig/libfm-gtk* + /usr/lib/pkgconfig/libfm.pc + + + + + 2018-04-23 + 1.2.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + diff --git a/desktop/lxqt/libfm/translations.xml b/desktop/lxqt/libfm/translations.xml new file mode 100755 index 0000000000..d06306182f --- /dev/null +++ b/desktop/lxqt/libfm/translations.xml @@ -0,0 +1,14 @@ + + + libfm-qt + LXDE dosya yönetimi kitaplıkları + libfm-qt, LXDE için dosya yönetim kitaplıklarını içerir. + + + + + llibfm-qt-devel + LXDE dosya yönetimi kitaplıkları + libfm-qt, LXDE için dosya yönetim kitaplıklarını içerir. + + \ No newline at end of file