From 6cca88989810c79ce85fb83f1f832157f9416b9e Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sun, 14 Jan 2024 15:30:38 -0500 Subject: [PATCH] bats-support: install in bats search path --- srcpkgs/bats-support/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/bats-support/template b/srcpkgs/bats-support/template index ce147e02af4..5389061cb09 100644 --- a/srcpkgs/bats-support/template +++ b/srcpkgs/bats-support/template @@ -1,14 +1,14 @@ -# Template file for 'bats-support'. +# Template file for 'bats-support' pkgname=bats-support version=0.3.0 -revision=1 +revision=2 depends="bats" checkdepends="$depends" short_desc="Supporting library for BATS test helpers" maintainer="Andrew J. Hesford " license="CC0-1.0" homepage="https://github.com/bats-core/bats-support" -distfiles="${homepage}/archive/v${version}.tar.gz" +distfiles="https://github.com/bats-core/bats-support/archive/v${version}.tar.gz" checksum=7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f do_check() { @@ -19,10 +19,10 @@ do_install() { local f for f in *.bash; do - vinstall "$f" 644 usr/lib/bats-support + vinstall "$f" 644 usr/lib/bats/bats-support done for f in src/*.bash; do - vinstall "$f" 644 usr/lib/bats-support/src + vinstall "$f" 644 usr/lib/bats/bats-support/src done }