move the dragora-mouse tool to archive/dragora-tools/ directory
[dragora.git] / recipes / tools / musl_utils / recipe
blob38752ff66ca7a0d493ee1a2042f567242d8447db
1 # Build recipe for musl (extra utilities).
3 # Copyright (c) 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=musl_utils
18 version=alpine
19 pkgversion=20180302
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/tools"
25 description="
26 Extra utilities to complement Musl.
28 This package includes the following utilities:
29 getconf, getent, and iconv.
31 The code is derived from software contributed to The NetBSD Foundation,
32 mostly rewritten to be used in musl-compatible systems by Timo Teras.
34 The implementation of the iconv utility was written by Rich Felker.
37 homepage=http://git.alpinelinux.org/cgit/aports/tree/main/musl/
38 license="GPLv2+ | BSD"
40 build()
42     set -e
44     mkdir -p "${destdir}/usr/bin"
46     for file in getconf getent iconv
47     do
48         gcc \
49          $QICFLAGS -no-pie -fno-PIE -fstack-protector-all $QILDFLAGS -static \
50           "${worktree}/archive/musl/${file}.c" -o "${destdir}/usr/bin/$file"
51     done