mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
+x.org/xpm (#1363)
* +x.org/xpm --------- Co-authored-by: Max Howell <mxcl@me.com>
This commit is contained in:
parent
4ab6fb310b
commit
e69a66dba2
1 changed files with 42 additions and 0 deletions
42
projects/x.org/xpm/package.yml
Normal file
42
projects/x.org/xpm/package.yml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
distributable:
|
||||||
|
url: https://www.x.org/archive/individual/lib/libXpm-{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
- 3.5.15
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
x.org/x11: '*'
|
||||||
|
zlib.net: ^1.2
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: c99
|
||||||
|
tea.xyz/gx/make: '*'
|
||||||
|
freedesktop.org/pkg-config: ~0.29
|
||||||
|
gnu.org/gettext: 0.21
|
||||||
|
script: |
|
||||||
|
./configure \
|
||||||
|
--prefix="{{prefix}}" \
|
||||||
|
--sysconfdir="$SHELF"/etc \
|
||||||
|
--localstatedir="$SHELF"/var \
|
||||||
|
--disable-open-zfile
|
||||||
|
make --jobs {{ hw.concurrency }} install
|
||||||
|
env:
|
||||||
|
SHELF: ${{tea.prefix}}/x.org
|
||||||
|
|
||||||
|
test:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: c99
|
||||||
|
script: |
|
||||||
|
mv $FIXTURE test.c
|
||||||
|
cc test.c
|
||||||
|
./a.out
|
||||||
|
fixture: |
|
||||||
|
#include "X11/Xlib.h"
|
||||||
|
#include "X11/xpm.h"
|
||||||
|
|
||||||
|
int main(int argc, char* argv[]) {
|
||||||
|
XpmColor color;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue