clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 60454e2 was 1c379e4, checked in by Jim Gifford <clfs@…>, 19 years ago |
r589@server (orig r587): ryan | 2005-08-05 22:57:16 -0700
Add a pile of new scripts, and add -32 and -64 symlinks
|
-
Property mode
set to
100755
|
File size:
997 bytes
|
Rev | Line | |
---|
[1c379e4] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### libmng ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=libmng-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 |
|
---|
| 13 | unpack_tarball libmng-${LIBMNG_VER}
|
---|
| 14 | cd ${PKGDIR}
|
---|
| 15 |
|
---|
| 16 | max_log_init libmng ${LIBMNG_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 17 | sed -e 's@\(^prefix=\).*@\1/usr@g' \
|
---|
| 18 | -e 's@\(^CFLAGS=\)\(.*\)@\1${TGT_CFLAGS} -fPIC \2@g' \
|
---|
| 19 | -e "s@\$(prefix)/lib.*@\$(prefix)/${libdirname}@g" \
|
---|
| 20 | -e "s@/usr/local/lib@\$(prefix)/${libdirname}@g" \
|
---|
| 21 | -e "s@/usr/local@\$(prefix)@g" \
|
---|
| 22 | < makefiles/makefile.linux > Makefile
|
---|
| 23 |
|
---|
| 24 | min_log_init ${BUILDLOGS} &&
|
---|
| 25 | make ${PMFLAGS} CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 26 | >> ${LOGFILE} 2>&1 &&
|
---|
| 27 | echo " o Build OK" &&
|
---|
| 28 |
|
---|
| 29 | min_log_init ${INSTLOGS} &&
|
---|
| 30 | (
|
---|
| 31 | make prefix=/usr install &&
|
---|
| 32 | install -v -m644 doc/man/*.3 /usr/share/man/man3 &&
|
---|
| 33 | install -v -m644 doc/man/*.5 /usr/share/man/man5 &&
|
---|
| 34 | install -v -m755 -d /usr/share/doc/libmng-${LIBMNG_VER} &&
|
---|
| 35 | install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-${LIBMNG_VER}
|
---|
| 36 | ) >> ${LOGFILE} 2>&1 &&
|
---|
| 37 | echo " o ALL OK" || barf
|
---|
| 38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.