void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

commit 86f395532d74ea2a3067c3866aee2406774f2ca3
parent a6391da3f1558d9580713f37d353ce2de2799807
Author: Dash Eclipse <dash@ezup.dev>
Date:   Sat, 10 Oct 2020 14:12:06 +0000

New package: morse

Diffstat:
Mezup/pkg-list.txt | 1+
Asrcpkgs/morse/template | 21+++++++++++++++++++++
2 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/ezup/pkg-list.txt b/ezup/pkg-list.txt @@ -23,6 +23,7 @@ font-jetbrains-mono-ttf #binary font-kiwi-otb #fetch #git # https-dns-proxy #git + morse #git oggfwd #git_archive python3-bpytop rig diff --git a/srcpkgs/morse/template b/srcpkgs/morse/template @@ -0,0 +1,21 @@ +# Template file for 'morse' +pkgname=morse +version=0 +revision=1 +build_style=gnu-makefile +hostmakedepends="git" +short_desc="Command-line tool for morse code translation" +maintainer="Dash Eclipse <dash@ezup.dev>" +license="MIT" +homepage="https://github.com/mk12/${pkgname}" +commit="0b202fdde0114e933e89b92a138f14e92bc48446" +tags="ezup gitpkg ${commit}" + +do_fetch() { + git clone --branch master ${homepage}.git ${wrksrc} + git -C ${wrksrc} reset --hard ${commit} +} + +do_install() { + vbin bin/morse +}