mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
22 lines
532 B
YAML
22 lines
532 B
YAML
|
distributable:
|
||
|
url: https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-{{version.marketing}}.tar.xz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
url: https://icon-theme.freedesktop.org/releases/
|
||
|
match: /hicolor-icon-theme-\d+\.\d+\.tar\.xz/
|
||
|
strip:
|
||
|
- /^hicolor-icon-theme-/
|
||
|
- /.tar.xz/
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix="{{prefix}}"
|
||
|
|
||
|
test:
|
||
|
test -e "{{prefix}}/share/icons/hicolor/index.theme" && exit 0 || exit 1
|