aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Williams2019-11-27 06:41:34 +1300
committerSamuel Williams2019-11-27 06:41:34 +1300
commitc9282670c8c12dba19b4b5c747a4fe1e3f6d14c1 (patch)
tree67784320def3d08e2296f79f0662bce2d57c86ac
downloadaur-c9282670c8c12dba19b4b5c747a4fe1e3f6d14c1.tar.gz
Initial release based on GitHub instructions.
-rw-r--r--.SRCINFO14
-rwxr-xr-xPKGBUILD23
2 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..fcb696725f91
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = github-actions
+ pkgdesc = GitHub Actions self-hosted runner tools.
+ pkgver = 2.161.0
+ pkgrel = 1
+ url = https://help.github.com/en/actions
+ arch = x86_64
+ license = custom
+ provides = github-actions
+ conflicts = github-actions
+ source = https://githubassets.azureedge.net/runners/2.161.0/actions-runner-linux-x64-2.161.0.tar.gz
+ sha512sums = 711cdb99e6dc34e6cc843ef31befd2db49bfe0463f3da9550663ced9febb362cdf23d4976ce78455edad72d00dd0713114e13c46a5461c454a5a9fe5738b8639
+
+pkgname = github-actions
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100755
index 000000000000..c74ebdc61e79
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: Samuel Williams <samuel@oriontransfer.net>
+
+pkgname=github-actions
+pkgver=2.161.0
+pkgrel=1
+pkgdesc='GitHub Actions self-hosted runner tools.'
+arch=('x86_64')
+url='https://help.github.com/en/actions'
+license=('custom')
+
+provides=('github-actions')
+conflicts=('github-actions')
+
+source=(
+ https://githubassets.azureedge.net/runners/$pkgver/actions-runner-linux-x64-$pkgver.tar.gz
+)
+
+sha512sums=('711cdb99e6dc34e6cc843ef31befd2db49bfe0463f3da9550663ced9febb362cdf23d4976ce78455edad72d00dd0713114e13c46a5461c454a5a9fe5738b8639')
+
+package() {
+ mkdir -p "$pkgdir/opt/$provides"
+ cp -r "$srcdir/." "$pkgdir/opt/$provides"
+}