mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
38 lines
865 B
YAML
38 lines
865 B
YAML
distributable:
|
||
url: https://astron.com/pub/file/file-{{version.raw}}.tar.gz
|
||
#TODO url: ftp://ftp.astron.com/pub/file/file-{{version.raw}}.tar.gz
|
||
strip-components: 1
|
||
|
||
versions:
|
||
url: https://astron.com/pub/file/
|
||
match: /file-\d+\.\d+\.tar\.gz/
|
||
strip:
|
||
- /file-/
|
||
- /.tar.gz/
|
||
|
||
dependencies:
|
||
zlib.net: 1 #FIXME this is actually an optional dep
|
||
|
||
build:
|
||
dependencies:
|
||
git-scm.org: 2
|
||
script:
|
||
- git apply props/relocatable.diff
|
||
|
||
# Our diff has old labels
|
||
- run: |
|
||
sed -i.bak -e 's/^protected const char/file_protected const char/' magic.c
|
||
rm magic.c.bak
|
||
working-directory: src
|
||
if: '>=5.45'
|
||
|
||
- ./configure --prefix={{prefix}}
|
||
- make --jobs {{hw.concurrency}} install
|
||
|
||
test: |
|
||
file {{prefix}}/bin/file
|
||
#TODO check output, we don’t since it varies by platform annoyingly
|
||
|
||
provides:
|
||
- bin/file
|