diff options
author | Richard Purdie <richard@openedhand.com> | 2007-08-03 11:40:08 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-08-03 11:40:08 +0000 |
commit | 034bbb805be0002fe6d689abde19662868b57b2c (patch) | |
tree | cfde7c927d658c9c69cd18a5da58089296df6a72 /meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb | |
parent | 9525f35eb1073c6e25a620b3b3fdedf5b5cb834a (diff) | |
download | poky-034bbb805be0002fe6d689abde19662868b57b2c.tar.gz |
pcmanfm: 0.3.2-beta -> 0.3.2.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2344 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb')
-rw-r--r-- | meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb b/meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb new file mode 100644 index 0000000000..def5370e19 --- /dev/null +++ b/meta/packages/pcmanfm/pcmanfm_0.3.2.2.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | LICENSE = "GPL" | ||
2 | DESCRIPTION = "procfs tools" | ||
3 | SECTION = "x11" | ||
4 | PRIORITY = "optional" | ||
5 | DEPENDS = "gtk+ libowl" | ||
6 | |||
7 | PR="r1" | ||
8 | |||
9 | SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ | ||
10 | file://gnome-fs-directory.png \ | ||
11 | file://gnome-fs-regular.png \ | ||
12 | file://gnome-mime-text-plain.png \ | ||
13 | file://emblem-symbolic-link.png \ | ||
14 | file://desktop.patch;patch=1 \ | ||
15 | file://no-warnings.patch;patch=1 \ | ||
16 | file://owl-window-menu.patch;patch=1" | ||
17 | |||
18 | EXTRA_OECONF = "--enable-inotify --disable-hal" | ||
19 | |||
20 | inherit autotools pkgconfig | ||
21 | |||
22 | do_install_append () { | ||
23 | install -d ${D}/${datadir} | ||
24 | install -d ${D}/${datadir}/pixmaps/ | ||
25 | |||
26 | install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps | ||
27 | } | ||
28 | |||
29 | FILES_${PN} += "${datadir}/pixmaps/*.png" | ||
30 | |||