forked from wolfi-dev/os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrep.yaml
39 lines (39 loc) · 969 Bytes
/
grep.yaml
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
package:
name: grep
version: "3.8"
epoch: 0
description: "GNU grep implementation"
target-architecture:
- all
copyright:
- paths:
- "*"
attestation: TODO
license: GPL-3.0-or-later
dependencies:
runtime:
environment:
contents:
repositories:
- https://packages.wolfi.dev/bootstrap/stage3
keyring:
- https://packages.wolfi.dev/bootstrap/stage3/wolfi-signing.rsa.pub
packages:
- busybox
- ca-certificates-bundle
- build-base
pipeline:
- uses: fetch
with:
uri: https://ftp.gnu.org/gnu/grep/grep-${{package.version}}.tar.gz
expected-sha256: 8de60a5169c0c1fdd8170bd93bbda575b87bfcfa7de6319b8bd60dc20be2fb97
- name: Configure
runs: |
./configure \
--host=${{host.triplet.gnu}} \
--target=${{host.triplet.gnu}} \
--prefix=/usr \
--datadir=/usr/share
- uses: autoconf/make
- uses: autoconf/make-install
- uses: strip