1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/bin/sh
# Copyright (C) 2000-2023 The Xastir Group
# <http://www.ece.uvic.ca/~mdadams/jasper/>
# Compile jasper-1.701.0 under Linux Standard Base 3.0. Install
# into /opt/lsb-tmp/ directory structure.
# NOTE:
# "Free Standards Group, FSG, Linux Standard Base, LSB, Free
# Standards Certified, LSB Certified and the Free Standards
# Certified logo are trademarks, service marks and certification
# marks, as appropriate, of Free Standards Group in the United
# States and in other countries."
#
# We are in no way representing that Xastir has been certified by
# the FSG. To do so costs real money. We do intend some Xastir
# binaries to install and run properly on LSB-3.0 compliant x86
# Linux systems though...
#
export PATH=${PATH}:/opt/lsb/bin
export LSBCC_WARN=1
# A colon-separated list of "extra" shared libraries to link with
# the application. Each shared lib must be LSB-compliant and must
# be distributed along with the application.
#export LSBCC_SHAREDLIBS=
CC=lsbcc CXX=lsbc++ ./configure \
--prefix=/opt/lsb-tmp \
--exec_prefix=/opt/lsb-tmp \
--enable-static \
--disable-shared
make clean
(make 2>&1) | tee make.log
#make -n install
sudo make install
|