summaryrefslogtreecommitdiff
path: root/test/librestage.d
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-09-29 15:00:21 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-10-01 20:31:54 -0400
commitf2294c82afae36bbd5772a86c6689fd4c12c50f0 (patch)
tree76c4b79054cdc8d58430db4d932cb94ebe49e290 /test/librestage.d
parent872b692162a44307161aa98a3c5edaccc3c7b61a (diff)
(BATS) test: Move files around
But don't edit them yet. This directory structure is based on that of dbscripts.
Diffstat (limited to 'test/librestage.d')
-rw-r--r--test/librestage.d/PKGBUILD-hello19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/librestage.d/PKGBUILD-hello b/test/librestage.d/PKGBUILD-hello
deleted file mode 100644
index 5f320fe..0000000
--- a/test/librestage.d/PKGBUILD-hello
+++ /dev/null
@@ -1,19 +0,0 @@
-pkgname='libretools-hello'
-pkgver=1.0
-license=('GPL')
-url='https://parabola.nu'
-
-pkgrel=1
-arch=(any)
-depends=(sh)
-
-build() {
- cd "$srcdir"
- echo '#!/bin/sh' > hello.sh
- echo 'echo Hello, world!' >> hello.sh
-}
-
-package() {
- cd "$srcdir"
- install -Dm755 hello.sh "$pkgdir"/usr/bin/libretools-hello
-}