From 31ef100bd88f85d7ae39a4ef68df4a4b1071cc8c Mon Sep 17 00:00:00 2001 From: Andrea D'Amore Date: Tue, 27 Oct 2020 10:18:43 +0100 Subject: [PATCH 1/2] Add new package walk --- srcpkgs/walk/template | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 srcpkgs/walk/template diff --git a/srcpkgs/walk/template b/srcpkgs/walk/template new file mode 100644 index 00000000000..0426104c230 --- /dev/null +++ b/srcpkgs/walk/template @@ -0,0 +1,26 @@ +# Template file for 'walk' +pkgname=walk +version=20190920 +revision=1 +_commit=70f7a8c104acf109ae810a9b34eb8e8b92b4d27d +build_style="gnu-makefile" +wrksrc="${pkgname}-${_commit}" +short_desc="walk and sor utility, collectively replacing find" +maintainer="orphaned" +license="Apache-2.0" +homepage="https://github.com/google/walk" +distfiles="https://github.com/google/walk/archive/${_commit}.tar.gz" +checksum=fce16683d757605a11284586794627a4352ec62718c59093a02f56b39896a1cd + +do_build() { + make +} + +do_install() { + vinstall sor 0755 usr/bin/ + vinstall walk 0755 usr/bin/ + vman sor.1 + vman walk.1 + vdoc README.md + vlicense LICENSE +} From 75301a791352a014669d84e207b6f1646585f595 Mon Sep 17 00:00:00 2001 From: Andrea D'Amore Date: Wed, 27 Jan 2021 22:13:07 +0100 Subject: [PATCH 2/2] Avoid installing license file per travis linting in CI --- srcpkgs/walk/template | 1 - 1 file changed, 1 deletion(-) diff --git a/srcpkgs/walk/template b/srcpkgs/walk/template index 0426104c230..a005372d047 100644 --- a/srcpkgs/walk/template +++ b/srcpkgs/walk/template @@ -22,5 +22,4 @@ do_install() { vman sor.1 vman walk.1 vdoc README.md - vlicense LICENSE }