This repository was archived by the owner on Mar 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpkgconf.yaml
More file actions
52 lines (50 loc) · 1.38 KB
/
pkgconf.yaml
File metadata and controls
52 lines (50 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package:
name: pkgconf
version: 1.9.3
epoch: 1
description: "An implementation of pkg-config"
target-architecture:
- all
copyright:
- paths:
- "*"
attestation: TODO
license: ISC
dependencies:
runtime:
environment:
contents:
repositories:
- https://packages.wolfi.dev/bootstrap/stage2
keyring:
- https://packages.wolfi.dev/bootstrap/stage2/wolfi-signing.rsa.pub
packages:
- wolfi-baselayout
- busybox
- ca-certificates-bundle
- build-base
pipeline:
- uses: fetch
with:
uri: https://distfiles.dereferenced.org/pkgconf/pkgconf-${{package.version}}.tar.gz
expected-sha256: 6d73ac21a9410f5cc636acf730f3a5bf46b28d1e18a239c89efc4b2c5548792f
- name: 'Configure pkgconf'
runs: |
./configure \
--prefix=/usr \
--libdir=/lib \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-pkg-config-dir=/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig \
--host=${{host.triplet.gnu}} \
--target=${{host.triplet.gnu}}
- runs: |
make -j$(nproc) V=1
- uses: autoconf/make-install
- runs: |
ln -s pkgconf "${{targets.destdir}}"/usr/bin/pkg-config
- name: 'Clean up documentation'
runs: |
rm -rf ${{targets.destdir}}/usr/share/info
- uses: strip