source: scripts/untested/blfs-scripts/blfs-lcms.sh @ d5e4fdc0

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d5e4fdc0 was 617118d, checked in by Jim Gifford <clfs@…>, 18 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
Line 
1#!/bin/bash
2
3### lcms ###
4
5cd ${SRC}
6LOG=lcms-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball lcms-${LCMS_VER}
17cd ${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
26max_log_init lcms ${LCMS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
27CC="${CC-gcc} ${ARCH_CFLAGS}" \
28CXX="${CXX-g++} ${ARCH_CFLAGS}" \
29CFLAGS="${TGT_CFLAGS}" \
30CXXFLAGS="${TGT_CFLAGS}" \
31./configure --prefix=/usr --with-python ${extra_conf} \
32   >> ${LOGFILE} 2>&1 &&
33echo " o Configure OK" &&
34
35min_log_init ${BUILDLOGS} &&
36make \
37   >> ${LOGFILE} 2>&1 &&
38echo " o Build OK" &&
39
40min_log_init ${INSTLOGS} &&
41make install \
42   >> ${LOGFILE} 2>&1 &&
43echo " o ALL OK" || barf
44
Note: See TracBrowser for help on using the repository browser.