diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-09 22:23:58 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-09 22:23:58 +0300 |
commit | 007c6a27d6594ef2fefe11413c066a9d8a6afa91 (patch) | |
tree | a8e190d78762e05e9b87c247008e5801596b5551 /extra/tllist/build | |
parent | 654ee3b4bba5564bcabd4c722178d22205f1cdab (diff) | |
download | repository-007c6a27d6594ef2fefe11413c066a9d8a6afa91.tar.gz |
tllist: move to extra
Diffstat (limited to 'extra/tllist/build')
-rwxr-xr-x | extra/tllist/build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extra/tllist/build b/extra/tllist/build new file mode 100755 index 00000000..9a2713f1 --- /dev/null +++ b/extra/tllist/build @@ -0,0 +1,13 @@ +#!/bin/sh -e + +export DESTDIR=$1 + +meson \ + --prefix=/usr \ + . output + +ninja -C output +ninja -C output install + +# Remove unneeded files. +rm -r "${1:?}/usr/share" |