diff options
-rw-r--r-- | testing/direnv/APKBUILD | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/testing/direnv/APKBUILD b/testing/direnv/APKBUILD index 28396f4522..0f6cf590c2 100644 --- a/testing/direnv/APKBUILD +++ b/testing/direnv/APKBUILD @@ -1,9 +1,9 @@ # Maintainer: pkgname=direnv -pkgver=2.15.2 +pkgver=2.20.1 pkgrel=0 pkgdesc="Environment variable switcher for the shell" -url="http://direnv.net" +url="https://direnv.net" arch="all" license="MIT" checkdepends="bash" @@ -20,18 +20,17 @@ prepare() { } build() { - cd "$builddir" make GOPATH="$srcdir" } check() { - cd "$builddir" - make test GOPATH="$srcdir" + # Also has tests for tcsh and elvish, this manual call is done instead of + # tests to avoid unwanted tests like 'shellcheck' and 'go-fmt' + GOPATH="$srcdir" make test-go test-bash } package() { - cd "$builddir" make DESTDIR="$pkgdir/usr" install } -sha512sums="f973ce55844fce97ad5a93832d53a8a0f4544080022f869c1a83dc3cf07ee86c1ea1a1cb31ddc20c4f5d205825e70405539bf866889c0aaafc7baf75b98d2fbe direnv-2.15.2.tar.gz" +sha512sums="f438e0b41c3f1ef41841c08eff4fefb8684f40b23a1d54c03b8d4ab2c81143bd3314fda83dc334dcd6233cdecf50764f6d61afae0ae6c450a6b8f4f181c5a931 direnv-2.20.1.tar.gz" |