summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD14
2 files changed, 27 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..e20ac8c17c51
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = pactest-git
+ pkgdesc = Test AUR software in a chroot
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://github.com/mcotocel/pactest
+ arch = any
+ license = MIT
+ depends = arch-install-scripts
+ source = git://github.com/mcotocel/pactest
+ sha1sums = SKIP
+
+pkgname = pactest-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..22fbbd2e3413
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+pkgname=pactest-git
+pkgver=0.1
+pkgdesc="Test AUR software in a chroot"
+pkgrel="1"
+arch=("any")
+url="https://github.com/mcotocel/pactest"
+license=('MIT')
+depends=('arch-install-scripts')
+source=("git://github.com/mcotocel/pactest")
+sha1sums=('SKIP')
+
+package() {
+ install -D -t "${pkgdir}/usr/bin" "${srcdir}/pactest/pactest"
+}