LibIDL: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 31: | Line 31: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
./configure --prefix=/usr && | |||
make | make | ||
| Line 43: | Line 44: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib32 && | |||
make | make | ||
| Line 55: | Line 57: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 && | |||
make | make | ||
Revision as of 10:09, 15 October 2006
| Download Source: | http://ftp.gnome.org/pub/gnome/sources/libIDL/0.8/libIDL-0.8.7.tar.bz2 |
|---|
Dependencies
Required
Optional to Build Documentation
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make
Install the package
make install &&
mv -v /usr/bin/libIDL-config-2{,-32}
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install &&
mv -v /usr/bin/libIDL-config-2{,-n32}
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install &&
mv -v /usr/bin/libIDL-config-2{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/libIDL-config-2
Documentation
If you have TeTeX installed and wold like to build the documentation, Run the following command:
make pdf && make ps && make html && makeinfo --plaintext libIDL2.texi >libIDL2.txt
Install the documentation:
install -v -m755 -d /usr/share/doc/libIDL-0.8.7/html &&
install -v -m644 libIDL2.{pdf,dvi,ps,txt} README \
/usr/share/doc/libIDL-0.8.7 &&
install -v -m644 libIDL2.html/* /usr/share/doc/libIDL-0.8.7/html