From 0aa34908c4133ee2b4120a716369ee62f85a64b1 Mon Sep 17 00:00:00 2001 From: Dave Eddy Date: Sun, 5 Feb 2023 14:20:19 -0500 Subject: [PATCH] vsv: update to 2.0.0 `vsv` was rewritten from Bash to Rust so this template reflects that change - the user-facing CLI interface has not changed. --- srcpkgs/vsv/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template index 2e1780a68fe8bf..d77a49d874edf2 100644 --- a/srcpkgs/vsv/template +++ b/srcpkgs/vsv/template @@ -1,18 +1,18 @@ # Template file for 'vsv' pkgname=vsv -version=1.3.5 +version=2.0.0 revision=1 -depends="bash psmisc" +build_style=cargo +depends="psmisc" short_desc="Manage and view runit services" maintainer="Dave Eddy " license="MIT" homepage="https://github.com/bahamas10/vsv" changelog="https://raw.githubusercontent.com/bahamas10/vsv/master/CHANGES.md" distfiles="https://github.com/bahamas10/vsv/archive/v${version}.tar.gz" -checksum=d4b88a7d11189d6a9dd160a25025cbec8d27a88ea02a6826e0c010824b6bc943 +checksum=05c20d8e04ca37fdc47dde80a04a4709b54650748529456ebdddb4104fc805ec -do_install() { - vbin vsv +post_install() { vman man/vsv.8 vlicense LICENSE }