diff options
author | Cem Keylan <cem@ckyln.com> | 2023-01-12 17:47:27 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2023-01-12 17:47:27 +0100 |
commit | 24635e0d85d5af31a3c97a1dd5d76044c3574b0a (patch) | |
tree | dfb7d987dd55ae2af86c7eef8e352d5d821b5daf /extra/xkbcomp/build | |
parent | 1fd5c31953a27c954c9a37a2857e6eaefe7d00da (diff) | |
download | repository-24635e0d85d5af31a3c97a1dd5d76044c3574b0a.tar.gz |
xkbcomp: move to extra
Diffstat (limited to 'extra/xkbcomp/build')
-rwxr-xr-x | extra/xkbcomp/build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extra/xkbcomp/build b/extra/xkbcomp/build new file mode 100755 index 00000000..75e3546c --- /dev/null +++ b/extra/xkbcomp/build @@ -0,0 +1,10 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" +export PKG_CONFIG="pkgconf --static" + +./configure \ + --prefix=/usr + +make +make DESTDIR="$1" install |