libfm
This commit is contained in:
Executable
+36
@@ -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")
|
||||||
Executable
+85
@@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>libfm</Name>
|
||||||
|
<Homepage>http://www.lxde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ayhan Yalçınsoy</Name>
|
||||||
|
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPL2</License>
|
||||||
|
<Icon>lxqt</Icon>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Core library of PCManFM file manager</Summary>
|
||||||
|
<Description>libfm is a Core library of PCManFM file manager</Description>
|
||||||
|
<Archive sha1sum="5887aa4e85ee0964e7da67368136849957afd5d6" type="tarxz">mirrors://sourceforge/pcmanfm/PCManFM + Libfm (tarball release)/LibFM/libfm-1.2.5.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>atk-devel</Dependency>
|
||||||
|
<Dependency versionFrom="0.102">dbus-glib-devel</Dependency>
|
||||||
|
<Dependency versionFrom="0.21">desktop-file-utils</Dependency>
|
||||||
|
<Dependency>gettext-devel</Dependency>
|
||||||
|
<Dependency>gst-plugins-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="1.21">gtk-doc</Dependency>
|
||||||
|
<Dependency versionFrom="3.20.4">gtk3-devel</Dependency>
|
||||||
|
<Dependency versionFrom="0.40.0">intltool</Dependency>
|
||||||
|
<Dependency versionFrom="0.6.21">libexif-devel</Dependency>
|
||||||
|
<Dependency>libxslt-devel</Dependency>
|
||||||
|
<Dependency>udisks2-devel</Dependency>
|
||||||
|
<Dependency versionFrom="0.13.0">vala-devel</Dependency>
|
||||||
|
<Dependency>menu-cache-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>libfm</Name>
|
||||||
|
<Summary>Development files for PCManFM</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>atk</Dependency>
|
||||||
|
<Dependency>cairo</Dependency>
|
||||||
|
<Dependency>dbus-glib</Dependency>
|
||||||
|
<Dependency>gdk-pixbuf</Dependency>
|
||||||
|
<Dependency>glib2</Dependency>
|
||||||
|
<Dependency>gtk3</Dependency>
|
||||||
|
<Dependency>libexif</Dependency>
|
||||||
|
<Dependency>libfm-extra</Dependency>
|
||||||
|
<Dependency>menu-cache</Dependency>
|
||||||
|
<Dependency>pango</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/libfm-gtk.so*</Path>
|
||||||
|
<Path fileType="library">/usr/lib/libfm.so*</Path>
|
||||||
|
<Path fileType="library">/usr/lib/libfm/modules</Path>
|
||||||
|
<Path fileType="library">/usr/lib/libfm-gtk*</Path>
|
||||||
|
<Path fileType="data">/usr/share/applications</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/share/libfm</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="data">/usr/share/man</Path>
|
||||||
|
<Path fileType="data">/usr/share/mime</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<Name>libfm-devel</Name>
|
||||||
|
<Summary>Development headers for libfm</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>glib2-devel</Dependency>
|
||||||
|
<Dependency>gtk3-devel</Dependency>
|
||||||
|
<Dependency release="current">libfm</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include/libfm</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig/libfm-gtk*</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig/libfm.pc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2018-04-23</Date>
|
||||||
|
<Version>1.2.5</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Ayhan Yalçınsoy</Name>
|
||||||
|
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>libfm-qt</Name>
|
||||||
|
<Summary xml:lang="tr">LXDE dosya yönetimi kitaplıkları</Summary>
|
||||||
|
<Description xml:lang="tr">libfm-qt, LXDE için dosya yönetim kitaplıklarını içerir.</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>llibfm-qt-devel</Name>
|
||||||
|
<Summary xml:lang="tr">LXDE dosya yönetimi kitaplıkları</Summary>
|
||||||
|
<Description xml:lang="tr">libfm-qt, LXDE için dosya yönetim kitaplıklarını içerir.</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user