commit ec62026fa16c8e3c8b0845e78753326edccd32df parent 92b9a8da4be7999c8fd3365a0c66c2ea001b860b Author: Nihal Jere <nihal@nihaljere.xyz> Date: Wed, 16 Jun 2021 13:00:40 -0500 dtc: new package Diffstat:
A | dtc/build | | | 14 | ++++++++++++++ |
A | dtc/checksums | | | 1 | + |
A | dtc/sources | | | 1 | + |
A | dtc/version | | | 1 | + |
4 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/dtc/build b/dtc/build @@ -0,0 +1,14 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +meson \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + -Dvalgrind=disabled \ + -Dpython=enabled \ + . output + +ninja -C output +ninja -C output install diff --git a/dtc/checksums b/dtc/checksums @@ -0,0 +1 @@ +6401c9a0f577a270df4632bf0f3e5454ccc7a5ca3caefa67a3e1c29c9c6b8c60 diff --git a/dtc/sources b/dtc/sources @@ -0,0 +1 @@ +https://github.com/dgibson/dtc/archive/refs/tags/v1.6.1.tar.gz diff --git a/dtc/version b/dtc/version @@ -0,0 +1 @@ +1.6.1 1