diff options
author | Valentin Popa <valentin.popa@intel.com> | 2013-10-28 14:37:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-29 10:41:29 +0000 |
commit | ba93c0faba5f4b5418ecc99da5e04d2ce0642875 (patch) | |
tree | c149f28c40041f327bd3f2a6bef2726ef6952e7c /meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb | |
parent | b4996f3ef827cdc12c39fe58fdb50d7486bfc7f0 (diff) | |
download | openembedded-core-ba93c0faba5f4b5418ecc99da5e04d2ce0642875.tar.gz openembedded-core-ba93c0faba5f4b5418ecc99da5e04d2ce0642875.tar.bz2 openembedded-core-ba93c0faba5f4b5418ecc99da5e04d2ce0642875.zip |
pcmanfm: upgraded to 1.1.2
Removed cross-compile-fix.patch; pcmanfm doesn't
use xml-purge anymore.
Tested on core-image-sato (qemuarm & qemux86).
Signed-off-by: Valentin Popa <valentin.popa@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb')
-rw-r--r-- | meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb b/meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb new file mode 100644 index 0000000000..2be4a56205 --- /dev/null +++ b/meta/recipes-sato/pcmanfm/pcmanfm_1.1.2.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "Fast lightweight tabbed filemanager" +HOMEPAGE = "http://pcmanfm.sourceforge.net/" +BUGTRACKER = "" + +LICENSE = "GPLv2 & GPLv2+ & LGPLv2.1+" +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ + file://src/pcmanfm.h;endline=22;md5=417b3855771a3a87f8ad753d994491f0 \ + file://src/gseal-gtk-compat.h;endline=21;md5=46922c8691f58d124f9420fe16149ce2" + +SECTION = "x11" +DEPENDS = "gtk+ startup-notification libfm" +DEPENDS_append_poky = " libowl" + +PR = "r0" + +COMPATIBLE_HOST = '(x86_64.*|i.86.*|aarch64.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)' + +SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ + file://gnome-fs-directory.png \ + file://gnome-fs-regular.png \ + file://gnome-mime-text-plain.png \ + file://emblem-symbolic-link.png \ + file://no-desktop.patch" + +SRC_URI[md5sum] = "41104699e653ff2b0a9a9e80a257d6a2" +SRC_URI[sha256sum] = "23ee33b34066ac83ce9a98bc9930049e69839438fb60489bd453bec8c2068950" + +inherit autotools pkgconfig + +do_install_append () { + install -d ${D}/${datadir} + install -d ${D}/${datadir}/pixmaps/ + + install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps +} |