We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8fea41 commit 262ca63Copy full SHA for 262ca63
recipes/woff2/recipe.yaml
@@ -19,9 +19,10 @@ build:
19
- cmake --build build
20
- cmake --install build
21
# Manually install binaries not handled by cmake --install
22
- - install -Dm755 build/woff2_info "${{ PREFIX }}/bin/woff2_info"
23
- - install -Dm755 build/woff2_decompress "${{ PREFIX }}/bin/woff2_decompress"
24
- - install -Dm755 build/woff2_compress "${{ PREFIX }}/bin/woff2_compress"
+ - mkdir -p "${{ PREFIX }}/bin"
+ - install -m755 build/woff2_info "${{ PREFIX }}/bin/woff2_info"
+ - install -m755 build/woff2_decompress "${{ PREFIX }}/bin/woff2_decompress"
25
+ - install -m755 build/woff2_compress "${{ PREFIX }}/bin/woff2_compress"
26
requirements:
27
build:
28
- ${{ compiler('c') }}
0 commit comments