mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 10:25:05 +03:00
fix(util-linux)[1]
This commit is contained in:
parent
f4ba93d4a9
commit
5fc8dc5335
1 changed files with 15 additions and 12 deletions
|
@ -108,19 +108,22 @@ build:
|
|||
freedesktop.org/pkg-config: '*'
|
||||
gnu.org/patch: '*'
|
||||
crates.io/semverator: '*'
|
||||
script: |
|
||||
if test darwin = {{hw.platform}} -a \
|
||||
semverator satisfies '<2.39' {{version}}; then
|
||||
patch -p0 <props/macports.patch # thanks to MacPorts
|
||||
fi
|
||||
./configure $ARGS
|
||||
make --jobs {{hw.concurrency}} install
|
||||
script:
|
||||
# thanks to MacPorts
|
||||
- |
|
||||
if test darwin = {{hw.platform}} && \
|
||||
semverator satisfies '<2.39' {{version}}; then
|
||||
patch -p0 <props/macports.patch
|
||||
fi
|
||||
- ./configure $ARGS
|
||||
- make --jobs {{hw.concurrency}} install
|
||||
|
||||
cd "{{prefix}}/include"
|
||||
for x in $HEADERS; do
|
||||
mv "$x/$x.h" .
|
||||
ln -s "../$x.h" "$x/"
|
||||
done
|
||||
- |
|
||||
cd "{{prefix}}/include"
|
||||
for x in $HEADERS; do
|
||||
mv "$x/$x.h" .
|
||||
ln -s "../$x.h" "$x/"
|
||||
done
|
||||
env:
|
||||
ARGS:
|
||||
- --prefix={{prefix}}
|
||||
|
|
Loading…
Reference in a new issue