1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- set -e
- program=libXfont
- version=1.5.4
- release=2
- pkgcategory=xorg_lib
- tarname=${program}-${version}.tar.bz2
- fetch=https://www.x.org/releases/individual/lib/$tarname
- description="
- Provides the core of the legacy X11 font system.
- This package is part of X11.
- "
- homepage=https://www.x.org
- license="MIT X Consortium"
- docs="AUTHORS COPYING ChangeLog README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
- ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --mandir=$mandir \
- --docdir=$docsdir \
- --enable-shared=yes \
- --enable-static=no \
- --enable-ipv6=yes \
- --enable-snfformat \
- --with-bzip2 \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
-
- 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"
- }
|