Initial commit.

This commit is contained in:
Patrick Northon 2021-03-24 22:59:25 -04:00
commit e56ff7ab08
3 changed files with 39 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = beakerlib
pkgdesc = BeakerLib is a shell-level integration testing library, providing convenience functions which simplify writing, running and analysis of integration and blackbox tests.
pkgver = 1.26
pkgrel = 1
url = https://github.com/beakerlib/beakerlib
arch = i686
arch = x86_64
license = GPL2
source = https://github.com/beakerlib/beakerlib/archive/refs/tags/1.26.tar.gz
sha256sums = ca16f5791f5e1212e97ad710a79cb5b43710efb1989450ab806cbab49c8b50a6
pkgname = beakerlib

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
pkgname=beakerlib
pkgver=1.26
pkgrel=1
pkgdesc="BeakerLib is a shell-level integration testing library, providing convenience functions which simplify writing, running and analysis of integration and blackbox tests."
arch=('i686' 'x86_64')
url="https://github.com/beakerlib/beakerlib"
license=('GPL2')
depends=()
makedepends=()
source=("https://github.com/beakerlib/beakerlib/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('ca16f5791f5e1212e97ad710a79cb5b43710efb1989450ab806cbab49c8b50a6')
_srcdir="${pkgname}-${pkgver}"
build() {
cd "${_srcdir}"
make
}
package() {
cd "${_srcdir}"
make DD="${pkgdir}" install
}