mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
29 lines
518 B
YAML
29 lines
518 B
YAML
|
distributable:
|
||
|
url: https://github.com/FredHucht/pstree/archive/v{{version.marketing}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: FredHucht/pstree
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
gnu.org/gcc: '*'
|
||
|
tea.xyz/gx/make: '*'
|
||
|
script: |
|
||
|
make --jobs {{ hw.concurrency }} pstree CC=gcc
|
||
|
mkdir -p "{{prefix}}/bin"
|
||
|
mkdir -p "{{prefix}}/man1"
|
||
|
mv pstree "{{prefix}}/bin"
|
||
|
mv pstree.1 "{{prefix}}/man1"
|
||
|
|
||
|
env:
|
||
|
linux/x86-64:
|
||
|
CFLAGS:
|
||
|
- -fPIC
|
||
|
|
||
|
provides:
|
||
|
- bin/pstree
|
||
|
|
||
|
test:
|
||
|
pstree -w
|