Hi,
I'm using Lubuntu v12.04 32bits and I would like to update pcmanfm to v1.1.0 as I saw it working somewhere else and it seems to works better than mine.
I'vre downloaded the packs from sourceforge but there is only source code inside. I have not find anywhere a compiled version or a .deb file ready
to install (the Lxde blog states it also needs libfm). Please can someone provide some help and tell me how I can update my systems ?
Thanks in advance.
how to update pcmanfm to v1.1.0 ?
-
- Posts: 1109
- Joined: Sat Aug 27, 2011 5:44 pm
- Location: Sierra Vista, Arizona USA
- Contact:
Re: how to update pcmanfm to v1.1.0 ?
As far as I know (and this web site confirms it) there is no official way.
http://ubuntuforums.org/showthread.php?t=2114836
The poster indicates a possible source but I have not tried it. I am using Lubuntu 12.04 with PCManFM .9.10 and Lubuntu 12.10 with PCManFM 1.01.
http://ubuntuforums.org/showthread.php?t=2114836
The poster indicates a possible source but I have not tried it. I am using Lubuntu 12.04 with PCManFM .9.10 and Lubuntu 12.10 with PCManFM 1.01.
Rex
-
- Posts: 9
- Joined: Sat Dec 08, 2012 9:24 am
Re: how to update pcmanfm to v1.1.0 ?
I've been looking for the package but it's not there. I think it was removed when LinuxLite moved from PCManFM to Thunar.Rex Bouwense wrote:As far as I know (and this web site confirms it) there is no official way.
http://ubuntuforums.org/showthread.php?t=2114836
The poster indicates a possible source but I have not tried it. I am using Lubuntu 12.04 with PCManFM .9.10 and Lubuntu 12.10 with PCManFM 1.01.
I tried to compile it myself from the package I downloaded at SourceForge
http://sourceforge.net/projects/pcmanfm ... 9/PCManFM/
But compilation failed (PCManFM and libfm) with the following error:
Code: Select all
./configure: line 12839: intltool-update: command not found
checking for intltool >= 0.40.0... found
configure: error: Your intltool is too old. You need intltool 0.40.0 or later.

Best regards
-
- Posts: 9
- Joined: Sat Dec 08, 2012 9:24 am
Re: how to update pcmanfm to v1.1.0 ?
I found a wiki !!
http://wiki.lxde.org/en/LXDE:PCManFM_bu ... etup_guide
God bless programmers whom write their documentations
First step, I had to install all required dependencies:
Then I found valac was also missing... All in all, that's around 70 Mo
Then moved libfm and PCManFM sources to /usr/src and started to compile as explained in the wiki
Launch PCManFM to check release number and it's v1.1.0 !
Now, I really don't know what to with the runtime dependencies the wiki is talking about, it seems important ok, but what can I do to make it good for my Lubuntu 12.04 ?
Also, can I remove now all this 70 Mo I had to install or is there something absolutely needed ? I have a small system and need space as much as I can...
Best regards

http://wiki.lxde.org/en/LXDE:PCManFM_bu ... etup_guide
God bless programmers whom write their documentations

First step, I had to install all required dependencies:
Code: Select all
sudo apt-get install dpkg-dev autoconf automake autotools-dev intltool libglib2.0-dev libgtk2.0-dev libmenu-cache1-dev libtool pkg-config
Code: Select all
sudo apt-get install valac
So far so good ...Compile and install components:
libfm:
if you have valac >= 0.13 availablepcmanfm:Code: Select all
cd /usr/src/libfm ./configure --prefix=/usr && make DEB_MULTIARCH=`dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null` && rm -f /usr/lib/$DEB_MULTIARCH/libfm-* sudo make install-strip
Code: Select all
cd /usr/src/pcmanfm ./configure --prefix=/usr && make sudo make install-strip

Now, I really don't know what to with the runtime dependencies the wiki is talking about, it seems important ok, but what can I do to make it good for my Lubuntu 12.04 ?
Also, can I remove now all this 70 Mo I had to install or is there something absolutely needed ? I have a small system and need space as much as I can...
Best regards