From f5cded50e60ddc30f6e18fde99738153f3a5c66f Mon Sep 17 00:00:00 2001 From: DanKGooGLy Date: Fri, 30 Jul 2021 22:32:30 -0400 Subject: [PATCH 1/2] New package: tiramisu-2.0alpha --- srcpkgs/tiramisu/template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcpkgs/tiramisu/template diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template new file mode 100644 index 000000000000..106f2b82f609 --- /dev/null +++ b/srcpkgs/tiramisu/template @@ -0,0 +1,16 @@ +# Template file for 'tiramisu' +pkgname=tiramisu +version=2.0alpha +revision=1 +build_style=gnu-makefile +hostmakedepends="libglib-devel pkg-config" +short_desc="Desktop notifications, the UNIX way" +maintainer="DanKGooGLy " +license="MIT" +homepage="https://github.com/Sweets/tiramisu" +distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz" +checksum=a109b61fe9e66bcd9fa8f60ae6c6ef4ae2d327640144c8b263edff1381b94c6f + +post_install() { + vlicense LICENSE +} From 11cd806963a563acc20ff32a6a6f768db3b98b40 Mon Sep 17 00:00:00 2001 From: DanKGooGLy Date: Sat, 31 Jul 2021 15:52:19 -0400 Subject: [PATCH 2/2] tiramisu-2.0alpha: Fixes Remove ${homepage} from distfiles. Move `libglib-devel` to `makedepends` --- srcpkgs/tiramisu/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template index 106f2b82f609..0f465addc01f 100644 --- a/srcpkgs/tiramisu/template +++ b/srcpkgs/tiramisu/template @@ -3,12 +3,13 @@ pkgname=tiramisu version=2.0alpha revision=1 build_style=gnu-makefile -hostmakedepends="libglib-devel pkg-config" +hostmakedepends="pkg-config" +makedepends="libglib-devel" short_desc="Desktop notifications, the UNIX way" maintainer="DanKGooGLy " license="MIT" homepage="https://github.com/Sweets/tiramisu" -distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz" +distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/v${version}.tar.gz" checksum=a109b61fe9e66bcd9fa8f60ae6c6ef4ae2d327640144c8b263edff1381b94c6f post_install() {