summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason White2016-07-04 19:23:04 -0700
committerJason White2016-07-04 19:23:04 -0700
commit5a60c10074ee160b575bf7421ccb4c146a0e0593 (patch)
tree739ceb2739843a6c3e0b208efc6d279331a0d3e9
parent6db24c3b8bbc976d893ee5f94882fc3f500cdc74 (diff)
downloadaur-5a60c10074ee160b575bf7421ccb4c146a0e0593.tar.gz
Make strace and button-lua required dependencies
Without these, the build system is pretty crippled.
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 20a80da604c4..0be9884bc63b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -8,9 +8,9 @@ pkgbase = button
license = MIT
makedepends = dmd
makedepends = dub
- depends = sqlite
- optdepends = strace: For automatic dependency detection (highly recommended)
- optdepends = button-lua: For writing build descriptions in Lua (highly recommended)
+ depends = sqlite,
+ depends = strace,
+ depends = button-lua
source = https://github.com/jasonwhite/button/archive/v0.0.1/button-0.0.1.tar.gz
md5sums = 8b01fddfe4a319d9ed62898d406fcb62
diff --git a/PKGBUILD b/PKGBUILD
index e08ec70a3033..ef0d74649fbb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,9 +6,7 @@ pkgdesc="A fast, correct, and robust build system"
arch=('i686' 'x86_64')
url="https://github.com/jasonwhite/$pkgname"
license=('MIT')
-depends=('sqlite')
-optdepends=('strace: For automatic dependency detection (highly recommended)'
- 'button-lua: For writing build descriptions in Lua (highly recommended)')
+depends=('sqlite', 'strace', 'button-lua')
makedepends=('dmd' 'dub')
source=("https://github.com/jasonwhite/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('8b01fddfe4a319d9ed62898d406fcb62')