1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- # Build recipe for which.
- #
- # Copyright (c) 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=which
- version=2.21
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/tools"
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://ftp.gnu.org/gnu/which/$tarname
- description="
- Shows the full path of (shell) commands.
- Which is a utility that prints out the full path of the executables
- that the shell would execute when the passed program names would have
- been entered on the shell prompt.
- "
- homepage=http://www.gnu.org/software/which
- license=GPLv3+
- # Source documentation
- docs="AUTHORS COPYING EXAMPLES NEWS README README.alias"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
- $configure_args \
- --infodir=$infodir \
- --mandir=$mandir \
- --build="$(cc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install
- # Compress pages and copy documentation
- rm -f "${destdir}/${infodir}/dir" # Redundancy.
- lzip -9 "${destdir}/${infodir}/which.info" \
- "${destdir}/${mandir}/man1/which.1"
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}/"
- }
|