123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # Build recipe for musl-obstack.
- #
- # Copyright (c) 2020-2022 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.
- # Exit immediately on any error
- set -e
- program=musl-obstack
- version=1.2.3
- release=1
- # Define a category for the output of the package name
- pkgcategory=libs
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=https://github.com/void-linux/musl-obstack/archive/v${version}/$tarname
- description="
- Implementation of obstack functions for musl libc.
- The musl-obstack package is a copy + paste of the \`obstack\`
- functions and macros found in GNU gcc \`libiberty\` library
- for use with Musl libc.
- "
- homepage=https://github.com/pullmoll/musl-obstack/
- license=GPLv2+
- # Source documentation
- docs="AUTHORS COPYING ChangeLog NEWS README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- sh ./bootstrap.sh
- ./configure CPPFLAGS="$QICPPFLAGS" \
- CFLAGS="$QICFLAGS -fPIC" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|