12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- # Build recipe for libedit.
- #
- # Copyright (c) 2016-2019 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=libedit
- version=20190324-3.1
- pkgversion=$(echo $version | tr - _)
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/libs"
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://thrysoee.dk/editline/$tarname
- description="
- A command line editor library.
- This is a port of the NetBSD Editline library (libedit).
- This Berkeley-style licensed command line editor library
- provides generic line editing, history, and tokenization
- functions, similar to those found in GNU Readline.
- "
- homepage=http://thrysoee.dk/editline
- license=BSD
- # Source documentation
- docs="COPYING ChangeLog THANKS"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --mandir=$mandir \
- --docdir=$docsdir \
- --enable-static \
- --enable-shared \
- --build="$(cc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
- # This is provided by the readline package
- rm -f "${destdir}/${mandir}/man3/history.3"
- # Compress and link man pages (if needed)
- if [ -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
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"
- }
|