mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
e98ea8fb0a
commit
ac17d7b79a
1 changed files with 19 additions and 0 deletions
|
@ -17,10 +17,29 @@ build:
|
||||||
gnu.org/bison: '*'
|
gnu.org/bison: '*'
|
||||||
github.com/westes/flex: '*'
|
github.com/westes/flex: '*'
|
||||||
gnome.org/libxslt: '*'
|
gnome.org/libxslt: '*'
|
||||||
|
gnome.org/gobject-introspection: '*'
|
||||||
script:
|
script:
|
||||||
- ./configure $CONFIGURE_ARGS
|
- ./configure $CONFIGURE_ARGS
|
||||||
- make --jobs {{hw.concurrency}}
|
- make --jobs {{hw.concurrency}}
|
||||||
- make --jobs {{hw.concurrency}} install
|
- make --jobs {{hw.concurrency}} install
|
||||||
|
- run: |
|
||||||
|
for d in vala-{{version.marketing}} valadoc-{{version.marketing}}; do
|
||||||
|
if [ -d $d ]; then
|
||||||
|
mv $d/* .
|
||||||
|
rmdir $d
|
||||||
|
ln -s . $d
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
working-directory: ${{prefix}}/include
|
||||||
|
- run: |
|
||||||
|
for d in vala-{{version.marketing}} valadoc-{{version.marketing}}; do
|
||||||
|
if [ -d $d ]; then
|
||||||
|
mv $d/* .
|
||||||
|
rmdir $d
|
||||||
|
ln -s . $d
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
working-directory: ${{prefix}}/lib
|
||||||
env:
|
env:
|
||||||
CONFIGURE_ARGS:
|
CONFIGURE_ARGS:
|
||||||
- --disable-debug
|
- --disable-debug
|
||||||
|
|
Loading…
Reference in a new issue