diff options
author | prspkt <prspkt@protonmail.com> | 2018-05-27 14:01:17 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-07-19 09:53:10 +0300 |
commit | 1e50faaa26bb67d85f7a036b751ef12f94f8f25c (patch) | |
tree | 4f11f8ab0c8c07af83a6d1c186ad4f4860352f51 /community/lastpass-cli | |
parent | 1930b07bb595290270526f94c53591876e0b56c7 (diff) | |
download | aports-1e50faaa26bb67d85f7a036b751ef12f94f8f25c.tar.bz2 aports-1e50faaa26bb67d85f7a036b751ef12f94f8f25c.tar.xz |
community/lastpass-cli: upgrade to 1.3.1, improve abuild
Diffstat (limited to 'community/lastpass-cli')
-rw-r--r-- | community/lastpass-cli/APKBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/lastpass-cli/APKBUILD b/community/lastpass-cli/APKBUILD index 8f4a9b3a94..7e40e510e8 100644 --- a/community/lastpass-cli/APKBUILD +++ b/community/lastpass-cli/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=lastpass-cli -pkgver=1.3.0 -pkgrel=1 +pkgver=1.3.1 +pkgrel=0 pkgdesc="LastPass command line interface tool" url="https://lastpass.com" arch="all" @@ -17,16 +17,18 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/${pkgname/-*/}/$pkgname/arch builddir="$srcdir/$pkgname-$pkgver" build() { - make -C "$builddir" all + cd "$builddir" + make all } package() { cd "$builddir" - make DESTDIR="$pkgdir/" install install-doc + make DESTDIR="$pkgdir" install install-doc } check() { - make -C "$builddir" test + cd "$builddir" + make test } zshcomp() { @@ -56,4 +58,4 @@ fishcomp() { "$subpkgdir"/usr/share/fish/completions/$pkgname.fish } -sha512sums="7a147e08ac4b8e4e895744f80c484db9da895f4439bccbc141fe17e480285c76479753c2b879c60258d740af39775a3fae225ad193b5e6379a1cae8862c2a3ae lastpass-cli-1.3.0.tar.gz" +sha512sums="092d28dc459719e662fbb2c5e92e8cc75be108aa9d7b62569ee44cb34dd9588e78151fdc5ad114c30e8de21c0b8803edc41db9295548c7cbfe6e537c9a52aad2 lastpass-cli-1.3.1.tar.gz" |