recipes: libs/libtirpc: added version 1.2.5
[dragora.git] / recipes / devel / bsdcompat-headers / recipe
blob9c69d53e861276b7110bb1abb6e9a577dce56121
1 # Build recipe for bsdcompat-headers (virtual).
3 # Copyright (c) 2020 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=bsdcompat-headers
18 version=0.7.2
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/devel"
24 description="
25 BSD compatibility headers.
27 This meta package includes the following headers:
28 sgidefs.h, cdefs.h, queue.h, tree.h.
31 homepage=http://www.dragora.org
32 license=BSD
34 build()
36     set -e
38     mkdir -p "${destdir}/usr/include/sys"
40     for name in cdefs.h queue.h tree.h
41     do
42         cp -p "${worktree}/archive/bsdcompat-headers/${name}" \
43               "${destdir}/usr/include/sys"
44         chmod 644 "${destdir}/usr/include/sys/${name}"
45     done
47     cp -p "${worktree}/archive/bsdcompat-headers/sgidefs.h" \
48           "${destdir}"/usr/include/
49     chmod 644 "${destdir}/usr/include/sgidefs.h"