2023-05-07 02:19:12 +03:00
|
|
|
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:
|
2024-05-21 02:14:05 +03:00
|
|
|
dependencies:
|
|
|
|
mesonbuild.com: '*'
|
|
|
|
ninja-build.org: '*'
|
|
|
|
script:
|
|
|
|
- run: |
|
|
|
|
./configure $ARGS
|
|
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
if: <0.18
|
|
|
|
- run: |
|
|
|
|
meson setup build $ARGS
|
|
|
|
meson compile -C build --verbose
|
|
|
|
meson install -C build
|
|
|
|
if: '>=0.18'
|
|
|
|
|
2023-05-07 02:19:12 +03:00
|
|
|
env:
|
|
|
|
ARGS:
|
|
|
|
- --prefix="{{prefix}}"
|
|
|
|
|
2023-10-02 03:41:57 +03:00
|
|
|
test: test -e "{{prefix}}/share/icons/hicolor/index.theme" && exit 0 || exit 1
|