mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
+frbidi+harfbuzz (#88)
This commit is contained in:
parent
e3cd93b1ad
commit
09a0df6dd9
2 changed files with 57 additions and 0 deletions
17
projects/gnu.org/fribidi/package.yml
Normal file
17
projects/gnu.org/fribidi/package.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
distributable:
|
||||
url: https://github.com/fribidi/fribidi/releases/download/v{{ version }}/fribidi-{{ version }}.tar.xz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: fribidi/fribidi
|
||||
strip: /^FriBidi Version /
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
script: |
|
||||
./configure --prefix={{prefix}} --disable-debug
|
||||
make --jobs={{ hw.concurrency }} install
|
||||
|
||||
test: true #FIXME
|
40
projects/harfbuzz.org/package.yml
Normal file
40
projects/harfbuzz.org/package.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
distributable:
|
||||
url: https://github.com/harfbuzz/harfbuzz/archive/{{ version }}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: harfbuzz/harfbuzz/tags
|
||||
|
||||
dependencies:
|
||||
cairographics.org: 1
|
||||
freetype.org: 2
|
||||
gnome.org/glib: 2
|
||||
unicode.org: '>=71'
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
cmake.org: 3
|
||||
mesonbuild.com: ^0.63
|
||||
ninja-build.org: 1
|
||||
freedesktop.org/pkg-config: ^0.29
|
||||
gnome.org/gobject-introspection: 1
|
||||
python.org: 3 #FIXME rq’d by gnome.org/gobject-introspection but should be added by tea-env
|
||||
working-directory: build
|
||||
script: |
|
||||
meson .. $ARGS
|
||||
ninja --verbose
|
||||
ninja install
|
||||
env:
|
||||
ARGS:
|
||||
- --prefix={{prefix}}
|
||||
- --buildtype=release
|
||||
- -Dcairo=enabled
|
||||
- -Dcoretext=enabled
|
||||
- -Dfreetype=enabled
|
||||
- -Dglib=enabled
|
||||
- -Dtests=disabled
|
||||
#FIXME or gir scanner fails
|
||||
CC: clang
|
||||
|
||||
test: true #FIXME
|
Loading…
Reference in a new issue