Difference between revisions of "GNOME Build"
From CBLFS
Jump to navigationJump to searchChipster19 (talk | contribs) |
|||
Line 18: | Line 18: | ||
* [[GNOME Virtual File System]] | * [[GNOME Virtual File System]] | ||
* [[GDL]] | * [[GDL]] | ||
+ | * [[Perl Module Locale::Gettext]] | ||
== Non-Multilib == | == Non-Multilib == |
Revision as of 08:37, 29 February 2008
Download Source: | http://ftp.gnome.org/pub/GNOME/sources/gnome-build/2.24/gnome-build-2.24.1.tar.bz2 |
---|
Contents
Introduction to GNOME Build
Project Homepage: Unknown
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=${GNOME_PREFIX} && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" \ PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \ ./configure --prefix=${GNOME_PREFIX} && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \ PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \ ./configure --prefix=${GNOME_PREFIX} \ --libdir=${GNOME_PREFIX}/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \ ./configure --prefix=${GNOME_PREFIX} \ --libdir=${GNOME_PREFIX}/lib64 && make
Install the package
make install
Contents
Installed Programs: | gdb-am-parse gbf-mkfile-parse |
---|---|
Installed Libraries: | libgbf-1.so libgbf-widgets-1.so |
Installed Directory: | ${GNOME_PREFIX}/lib/gnome-build-1.0 |