clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 9b5d6cdc was 617118d, checked in by Jim Gifford <clfs@…>, 19 years ago |
r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure
|
-
Property mode
set to
100755
|
File size:
1.1 KB
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### lcms ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=lcms-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
| 13 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
| 14 | fi
|
---|
| 15 |
|
---|
| 16 | unpack_tarball lcms-${LCMS_VER}
|
---|
| 17 | cd ${PKGDIR}
|
---|
| 18 |
|
---|
| 19 | # TODO: need to patch python/lcms.i as SWIG_LPGAMMATABLE is not defined
|
---|
| 20 | # TODO: check python output what it defines for site-packeages during
|
---|
| 21 | # bi-arch builds... python script dir is always lib, not lib64
|
---|
| 22 | # ( thio could be an issue with the python build ).
|
---|
| 23 | # Also, produced .la files need editing, and for some reason
|
---|
| 24 | # libtool brings in /usr/lib64/lib{jpeg,tiff}.la during 32bit builds
|
---|
| 25 |
|
---|
| 26 | max_log_init lcms ${LCMS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 27 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 28 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
| 29 | CFLAGS="${TGT_CFLAGS}" \
|
---|
| 30 | CXXFLAGS="${TGT_CFLAGS}" \
|
---|
| 31 | ./configure --prefix=/usr --with-python ${extra_conf} \
|
---|
| 32 | >> ${LOGFILE} 2>&1 &&
|
---|
| 33 | echo " o Configure OK" &&
|
---|
| 34 |
|
---|
| 35 | min_log_init ${BUILDLOGS} &&
|
---|
| 36 | make \
|
---|
| 37 | >> ${LOGFILE} 2>&1 &&
|
---|
| 38 | echo " o Build OK" &&
|
---|
| 39 |
|
---|
| 40 | min_log_init ${INSTLOGS} &&
|
---|
| 41 | make install \
|
---|
| 42 | >> ${LOGFILE} 2>&1 &&
|
---|
| 43 | echo " o ALL OK" || barf
|
---|
| 44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.