diff options
author | Willy Micieli | 2023-11-26 14:02:36 +0100 |
---|---|---|
committer | Willy Micieli | 2023-11-26 14:02:36 +0100 |
commit | b73cb8ece1e2a1e547a16eaa20f84fc49f3ba05f (patch) | |
tree | 62437fc7f77a0d1ec7ed4ce4234f8905aeb90d7f | |
download | aur-b73cb8ece1e2a1e547a16eaa20f84fc49f3ba05f.tar.gz |
firt version
-rw-r--r-- | .SRCINFO | 19 | ||||
-rw-r--r-- | PKGBUILD | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..1cc71d160e75 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = continuous-testing + pkgdesc = An rust program to test in continuous application + pkgver = 0.3.4 + pkgrel = 1 + url = https://github.com/taishingi/continuous-testing + arch = any + license = GPL3 + depends = packer + depends = docker + depends = rust + depends = git + depends = wget + depends = unzip + optdepends = go: Go support + provides = again + source = 0.3.4.tar.gz::https://github.com/taishingi/continuous-testing/archive/refs/tags/0.3.4.tar.gz + sha256sums = 9ce88d8980dacfb7cad4c272cdcbc5269f6f23cd3e5344c95390128812cadd63 + +pkgname = continuous-testing diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1fc049bba186 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Willy Micieli <micieli@vivaldi.net> + +pkgname=continuous-testing +pkgver=0.3.4 +pkgrel=1 +pkgdesc="An rust program to test in continuous application" +provides=("again") +arch=('any') +url="https://github.com/taishingi/continuous-testing" +license=('GPL3') +depends=('packer' 'docker' 'rust' 'git' 'wget' 'unzip') +optdepends=('go: Go support') +source=("${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz") +sha256sums=('9ce88d8980dacfb7cad4c272cdcbc5269f6f23cd3e5344c95390128812cadd63') + +package() { + cd "${pkgname}-${pkgver}" + cargo install --path . +} |