From 8fbd0989101d1671071623a777381ea0d8206ae9 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Sat, 27 Mar 2021 23:51:38 +0100 Subject: [PATCH] hello recipe --- recipes/hello/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 recipes/hello/Makefile diff --git a/recipes/hello/Makefile b/recipes/hello/Makefile new file mode 100644 index 0000000..5b1e4d0 --- /dev/null +++ b/recipes/hello/Makefile @@ -0,0 +1,15 @@ +name = hello +version = 2.10 +URL = https://ftp.gnu.org/gnu/hello/hello-$(version).tar.gz + +dependencies = gettext +build-dependencies = make + +watch: + curl 'https://ftp.gnu.org/gnu/hello/' -o- 2>/dev/null | \ + sed -n "/hello-.*\.tar\.gz/{s/\.tar\.gz.*//;s/.*hello-//;p}" | \ + tail -1 + + +SYSCONF ?= ../../ +include $(SYSCONF)/package.mk