diff options
Diffstat (limited to 'meta/packages/pcmanfm/pcmanfm_0.1.9.8.bb')
-rw-r--r-- | meta/packages/pcmanfm/pcmanfm_0.1.9.8.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/pcmanfm/pcmanfm_0.1.9.8.bb b/meta/packages/pcmanfm/pcmanfm_0.1.9.8.bb new file mode 100644 index 0000000000..f35d0d4454 --- /dev/null +++ b/meta/packages/pcmanfm/pcmanfm_0.1.9.8.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | LICENSE = "GPL" | ||
2 | DESCRIPTION = "procfs tools" | ||
3 | SECTION = "x11" | ||
4 | PRIORITY = "optional" | ||
5 | MAINTAINER = "Chris Lord <chris@openedhand.com>" | ||
6 | DEPENDS = "gtk+" | ||
7 | |||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ | ||
9 | file://pcmanfm.desktop \ | ||
10 | file://pcmanfm.png \ | ||
11 | file://gnome-fs-directory.png \ | ||
12 | file://gnome-fs-regular.png \ | ||
13 | file://gnome-mime-text-plain.png \ | ||
14 | file://emblem-symbolic-link.png \ | ||
15 | file://no-fam-gtk2.6.patch;patch=1;pnum=1" | ||
16 | |||
17 | inherit autotools pkgconfig | ||
18 | |||
19 | do_install_append () { | ||
20 | install -d ${D}/${datadir} | ||
21 | install -d ${D}/${datadir}/applications | ||
22 | install -d ${D}/${datadir}/pixmaps/ | ||
23 | |||
24 | install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps | ||
25 | install -m 0644 ${WORKDIR}/pcmanfm.desktop ${D}/${datadir}/applications | ||
26 | } | ||
27 | |||
28 | FILES_${PN} += "${datadir}/applications/pcmanfm.desktop ${datadir}/pixmaps/*.png" | ||
29 | |||