diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-17 13:40:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-17 13:40:43 +0300 |
commit | 1ee2ece2064a923fc7026e8a5904fd1b2a55f89a (patch) | |
tree | a2249b816e5532d6a655c9fc7ce402d33d4b634f /extra/gdk-pixbuf/build | |
parent | 1272898a44a804121e20f48b3b4625aba79539a3 (diff) | |
download | repository-1ee2ece2064a923fc7026e8a5904fd1b2a55f89a.tar.gz |
gdk-pixbuf: move to extra
Diffstat (limited to 'extra/gdk-pixbuf/build')
-rwxr-xr-x | extra/gdk-pixbuf/build | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/gdk-pixbuf/build b/extra/gdk-pixbuf/build new file mode 100755 index 00000000..149a2c5c --- /dev/null +++ b/extra/gdk-pixbuf/build @@ -0,0 +1,19 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +meson \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + -Dgir=true \ + -Djasper=false \ + -Dpng=true \ + -Ddocs=false \ + -Dman=false \ + -Dinstalled_tests=false \ + -Dbuiltin_loaders=all \ + . output + +ninja -C output +ninja -C output install |