123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- # Build recipe for sed.
- #
- # Copyright (c) 2016-2018 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=sed
- version=4.5
- release=1
- tarname=${program}-${version}.tar.xz
- # Remote source(s)
- fetch=http://ftp.gnu.org/gnu/sed/$tarname
- description="
- GNU stream editor.
- Sed isn't really a true text editor or text processor. Instead,
- it is used to filter text, i.e., it takes text input and performs
- some operation on it and outputs the modified text.
- For more information, visit: http://www.gnu.org/software/sed
- "
- homepage=http://www.gnu.org/software/sed
- license=GPLv3+
- # Source documentation
- docs="AUTHORS BUGS COPYING ChangeLog NEWS README THANKS"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
- $configure_args \
- --infodir=$infodir \
- --mandir=$mandir \
- --docdir=$docsdir \
- --enable-nls \
- --enable-i18n \
- --build="$(cc -dumpmachine)"
- make -j${jobs}
- #make -k check
- make -j${jobs} DESTDIR="$destdir" install
- # Delete generated charset.alias
- rm -f "${destdir}/usr/lib/charset.alias"
- rmdir "${destdir}/usr/lib" || true
- # Compress info documents deleting index file for the package
- if test -d "${destdir}/$infodir"
- then
- rm -f "${destdir}/${infodir}/dir"
- lzip -9 "${destdir}/${infodir}"/*
- fi
- # Compress man page
- lzip -9 "${destdir}/${mandir}/man1/sed.1"
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- for file in $docs
- do
- cp -p $file "${destdir}${docsdir}"
- done
- }
|