Difference between revisions of "LibGWeather"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://ftp.gnome.org/pub/GNOME/sources/libgweather/{{LibGWeather-Version2}}/libgweather-{{LibGWeather-Versi...) |
|||
Line 21: | Line 21: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=$ | + | ./configure --prefix=$(pkg-config --variable=prefix gnome-vfs-2.0) \ |
− | --infodir=$ | + | --infodir=$(pkg-config --variable=prefix gnome-vfs-2.0)/share/info && |
make | make | ||
Revision as of 01:09, 12 April 2008
Download Source: | http://ftp.gnome.org/pub/GNOME/sources/libgweather/2.30/libgweather-2.30.3.tar.bz2 |
---|
Contents
Introduction to LibGWeather
Project Homepage: Unknown
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=$(pkg-config --variable=prefix gnome-vfs-2.0) \ --infodir=$(pkg-config --variable=prefix gnome-vfs-2.0)/share/info && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ USE_ARCH=32 ./configure --prefix=${GNOME_PREFIX} \ --infodir=${GNOME_PREFIX}/share/info && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ USE_ARCH=n32 ./configure --prefix=${GNOME_PREFIX} \ --infodir=${GNOME_PREFIX}/share/info \ --libdir=${GNOME_PREFIX}/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ USE_ARCH=64 ./configure --prefix=${GNOME_PREFIX} \ --infodir=${GNOME_PREFIX}/share/info \ --libdir=${GNOME_PREFIX}/lib64 && make
Install the package
make install