dnote-cli: update to 0.4.4.

This commit is contained in:
Toyam Cox 2018-10-07 16:45:58 -04:00
parent 8a33ffd62b
commit edee07a7ce

View file

@ -1,18 +1,27 @@
# Template file for 'dnote-cli' # Template file for 'dnote-cli'
pkgname=dnote-cli pkgname=dnote-cli
version=0.2.1 version=0.4.4
revision=5 revision=1
wrksrc=cli-${version} wrksrc=cli-${version}
build_style=go build_style=go
go_import_path="github.com/dnote-io/cli" go_import_path="github.com/dnote-io/cli"
hostmakedepends="git dep" hostmakedepends="git dep"
short_desc="Capture what you learn as you code without leaving the command line" short_desc="Capture what you learn as you code without leaving the command line"
maintainer="Toyam Cox <Vaelatern@Voidlinux.eu>" maintainer="Toyam Cox <Vaelatern@voidlinux.eu>"
license="MIT" license="MIT"
homepage="https://dnote.io/" homepage="https://dnote.io/"
distfiles="https://github.com/dnote-io/cli/archive/v${version}.tar.gz" distfiles="https://github.com/dnote-io/cli/archive/v${version}.tar.gz"
checksum=8a22fd2013f027162caf6482f2f82ec6ad1c7086006fadbcffd4159e1126891d checksum=6e6cb9a28aeb81f7751e9439fdeafa7eab9d0e5e643b2d569240141a6f860180
pre_build() {
cd $GOSRCPATH
dep ensure
}
post_install() { post_install() {
vlicense LICENSE vlicense LICENSE
} }
do_check() {
./scripts/test.sh
}