mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
new file: projects/x.org/xft/package.yml
new file: projects/x.org/xft/test.c
This commit is contained in:
parent
fdbfd24285
commit
2454f73780
33
projects/x.org/xft/package.yml
Normal file
33
projects/x.org/xft/package.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
distributable:
|
||||||
|
url: https://www.x.org/archive/individual/lib/libXft-{{version}}.tar.xz
|
||||||
|
strip-components: 1
|
||||||
|
versions:
|
||||||
|
url: https://www.x.org/archive/individual/lib/
|
||||||
|
match: /libXft-\d+\.\d+\.\d+\.tar\.xz/
|
||||||
|
strip:
|
||||||
|
- /^libXft-/
|
||||||
|
- /\.tar\.xz/
|
||||||
|
dependencies:
|
||||||
|
freedesktop.org/fontconfig: ^2.14
|
||||||
|
x.org/xrender: ^0.9
|
||||||
|
sourceware.org/bzip2: ^1
|
||||||
|
zlib.net: ^1
|
||||||
|
build:
|
||||||
|
script:
|
||||||
|
- ./configure $ARGS
|
||||||
|
- make --jobs {{ hw.concurrency }}
|
||||||
|
- make --jobs {{ hw.concurrency }} install
|
||||||
|
env:
|
||||||
|
ARGS:
|
||||||
|
- --prefix={{prefix}}
|
||||||
|
- --sysconfdir={{prefix}}/etc
|
||||||
|
- --localstatedir={{prefix}}/var
|
||||||
|
- --disable-dependency-tracking
|
||||||
|
- --disable-silent-rules
|
||||||
|
test:
|
||||||
|
dependencies:
|
||||||
|
freedesktop.org/pkg-config: '*'
|
||||||
|
script:
|
||||||
|
- cc test.c $(pkg-config --cflags fontconfig) -o test
|
||||||
|
- ./test
|
||||||
|
- pkg-config --modversion xft | grep {{version}}
|
6
projects/x.org/xft/test.c
Normal file
6
projects/x.org/xft/test.c
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#include "X11/Xft/Xft.h"
|
||||||
|
|
||||||
|
int main(int argc, char* argv[]) {
|
||||||
|
XftFont font;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue