123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- set -e
- program=texinfo
- version=6.8
- release=2
- pkgcategory=devel
- tarname=${program}-${version}.tar.gz
- fetch="
- https://ftpmirror.gnu.org/texinfo/$tarname
- https://ftp.gnu.org/gnu/texinfo/$tarname
- "
- description="
- The GNU documentation system.
- Texinfo is a documentation system that uses a single source
- file to produce both online information and printed output.
- It is primarily designed for writing software manuals.
- "
- homepage=https://www.gnu.org/software/texinfo
- license=GPLv3+
- docs="AUTHORS COPYING ChangeLog NEWS README* TODO"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
-
- patch -Np1 -i "${worktree}/patches/texinfo/headings-single.patch"
- ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" \
- LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --infodir=$infodir \
- --mandir=$mandir \
- --docdir=$docsdir \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
- make DESTDIR="$destdir" TEXMF="/usr/share/texmf" install-tex
-
- mkdir -p "${destdir}/etc/cron.daily/"
- cp -p "${worktree}/archive/texinfo/etc/cron.daily/texinfo" \
- "${destdir}/etc/cron.daily/"
- chmod 0755 "${destdir}/etc/cron.daily/texinfo"
-
- if test -d "${destdir}/$infodir"
- then
- rm -f "${destdir}/${infodir}/dir"
- lzip -9 "${destdir}/${infodir}"/*
- fi
-
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 {} +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|