On Wed, Feb 5, 2014 at 10:59 PM, PCMan <pcman...@gmail.com> wrote:
> The config file provided by Veeti uses minimally patches versions of
> lxqt repos. So they're not the latest versions.
> However, this is enough the demonstrate the ability of jhbuild.


I was working on a new root CMakeList.txt that build the automake and
cmake based repos handling dependencies.
I was using the ExternalProject cmake module. Something like this:
ExternalProject_Add(menu-cache
    SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/menu-cache
    CONFIGURE_COMMAND ./autogen.sh && ./configure
--prefix=${CMAKE_INSTALL_PREFIX}
    BUILD_COMMAND make
    INSTALL_COMMAND sudo make install && sudo ldconfig
    BUILD_IN_SOURCE 1
)

ExternalProject_Add(libfm
    DEPENDS menu-cache
    SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libfm
    CONFIGURE_COMMAND ./autogen.sh && ./configure --without-gtk
--sysconfdir=/etc --prefix=${CMAKE_INSTALL_PREFIX}
    BUILD_COMMAND make
    INSTALL_COMMAND sudo make install && sudo ldconfig
    BUILD_IN_SOURCE 1
)

Dependencies were working Ok... Next step was local installation.

jhbuild does everything that we need :)


-- 
        Luís Pereira

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Lxde-list mailing list
Lxde-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/lxde-list

Reply via email to