recipes: xfce/exo: upgraded to version 0.12.4
[dragora.git] / recipes / tools / sed / recipe
blob0fbd9a332e6d35fb85ad285de9d1c76cf1e8c39f
1 # Build recipe for sed.
3 # Copyright (c) 2016-2018 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=sed
18 version=4.7
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 tarname=${program}-${version}.tar.xz
26 # Remote source(s)
27 fetch=http://ftp.gnu.org/gnu/sed/$tarname
29 description="
30 GNU stream editor.
32 Sed isn't really a true text editor or text processor.  Instead,
33 it is used to filter text, i.e., it takes text input and performs
34 some operation on it and outputs the modified text.
36 For more information, visit:  http://www.gnu.org/software/sed
39 homepage=http://www.gnu.org/software/sed
40 license=GPLv3+
42 # Source documentation
43 docs="AUTHORS BUGS COPYING ChangeLog NEWS README THANKS"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
58      $configure_args \
59      --infodir=$infodir \
60      --mandir=$mandir \
61      --docdir=$docsdir \
62      --enable-nls \
63      --enable-i18n \
64      --build="$(cc -dumpmachine)"
66     make -j${jobs} V=1
67     #make -k check
68     make -j${jobs} DESTDIR="$destdir" install
70     # Delete generated charset.alias
71     rm -f "${destdir}/usr/lib/charset.alias"
72     rmdir "${destdir}/usr/lib" || true
74     # Compress info documents deleting index file for the package
75     if test -d "${destdir}/$infodir"
76     then
77         rm -f "${destdir}/${infodir}/dir"
78         lzip -9 "${destdir}/${infodir}"/*
79     fi
81     # Compress man page
82     lzip -9 "${destdir}/${mandir}/man1/sed.1"
84     # Copy documentation
85     mkdir -p "${destdir}${docsdir}"
87     for file in $docs
88     do
89         cp -p $file "${destdir}${docsdir}"
90     done