recipes: Adjust recipe format (minor changes)
[dragora.git] / recipes / tools / patch / recipe
bloba85b5d28971c4dbd4849536d4a3df027593378b0
1 # Build recipe for patch.
3 # Copyright (c) 2016-2019 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 # Exit immediately on any error
18 set -e
20 program=patch
21 version=2.7.6
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.bz2
29 # Remote source(s)
30 fetch=ftp://ftp.gnu.org/gnu/patch/$tarname
32 description="
33 A tool to patch files.
35 The patch package contains a program to modify or create files through
36 the aplication of a patch file created with the diff(1) program.
39 homepage=http://www.gnu.org/software/patch
40 license=GPLv3+
42 # Source documentation
43 docs="AUTHORS COPYING ChangeLog NEWS README TODO"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     # Update for hosts based on musl
56     cp -f "${worktree}/archive/common/config.guess" build-aux/config.guess
57     cp -f "${worktree}/archive/common/config.sub" build-aux/config.sub
59     # http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000156
60     patch -p1 < "${worktree}/patches/patch/Fix_segfault_with_mangled_rename_patch.patch"
61     patch -p1 < "${worktree}/patches/patch/Allow_input_files_to_be_missing_for_ed-style_patches.patch"
62     patch -p1 < "${worktree}/patches/patch/Fix_arbitrary_command_execution_in_ed-style_patches.patch"
64     autoreconf -vif
66     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
67      $configure_args \
68      --libdir=/usr/lib${libSuffix} \
69      --mandir=$mandir \
70      --build="$(gcc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install
75     # Remove generated charset.alias
76     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
77     rmdir "${destdir}/usr/lib${libSuffix}" || true
79     # Compress and link man pages (if needed)
80     if test -d "${destdir}/$mandir"
81     then
82         (
83             cd "${destdir}/$mandir"
84             find . -type f -exec lzip -9 {} +
85             find . -type l | while read -r file
86             do
87                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
88                 rm -- "$file"
89             done
90         )
91     fi
93     # Copy documentation
94     mkdir -p "${destdir}${docsdir}"
95     cp -p $docs "${destdir}${docsdir}/"