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 | |
parent | 654ee3b4bba5564bcabd4c722178d22205f1cdab (diff) | |
download | repository-007c6a27d6594ef2fefe11413c066a9d8a6afa91.tar.gz |
tllist: move to extra
Diffstat (limited to 'extra/tllist')
-rwxr-xr-x | extra/tllist/build | 13 | ||||
-rw-r--r-- | extra/tllist/checksums | 1 | ||||
-rw-r--r-- | extra/tllist/meta | 3 | ||||
-rw-r--r-- | extra/tllist/sources | 1 | ||||
-rw-r--r-- | extra/tllist/version | 1 |
5 files changed, 19 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" diff --git a/extra/tllist/checksums b/extra/tllist/checksums new file mode 100644 index 00000000..729422c8 --- /dev/null +++ b/extra/tllist/checksums @@ -0,0 +1 @@ +b0f32c9b2c2015c8d8dd068fd4e8b586aa91ca1670badc274ec962559ee0aadd 1.0.5.tar.gz diff --git a/extra/tllist/meta b/extra/tllist/meta new file mode 100644 index 00000000..00ebfca8 --- /dev/null +++ b/extra/tllist/meta @@ -0,0 +1,3 @@ +description: C header file only implementation of a typed linked list +license: MIT +maintainer: Cem Keylan <cem@carbslinux.org> diff --git a/extra/tllist/sources b/extra/tllist/sources new file mode 100644 index 00000000..dec6a892 --- /dev/null +++ b/extra/tllist/sources @@ -0,0 +1 @@ +https://codeberg.org/dnkl/tllist/archive/1.0.5.tar.gz diff --git a/extra/tllist/version b/extra/tllist/version new file mode 100644 index 00000000..46be4aa1 --- /dev/null +++ b/extra/tllist/version @@ -0,0 +1 @@ +1.0.5 1 |