summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorPatrick Lühne2018-08-23 18:51:12 +0200
committerPatrick Lühne2018-08-23 18:51:12 +0200
commitd7d686ae618464c79a905fbd9b41524bc9bfbf46 (patch)
tree9ab21adf4c1028a32d30498efc4b974a1c19dacf /PKGBUILD
parent8a37545084ff28d58381b7c08f1dd7a1271b66e2 (diff)
downloadaur-d7d686ae618464c79a905fbd9b41524bc9bfbf46.tar.gz
Add missing make dependency
Recently, Ruby stopped shipping RDoc by default. For this reason, users without an explicit RDoc installation would face building issues with this PKGBUILD. To fix this, this commit adds the now missing ruby-rdoc make dependency.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ad15fd9c34d4..e23b61ae7e52 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,12 @@
_gemname=liquid
pkgname=ruby-$_gemname
pkgver=4.0.0
-pkgrel=3
+pkgrel=4
pkgdesc='Liquid markup language. Safe, customer facing template language for flexible web apps'
url='https://shopify.github.io/liquid/'
arch=('any')
license=('MIT')
+makedepends=('ruby-rdoc')
depends=('ruby')
options=('!emptydirs')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Shopify/${_gemname}/archive/v${pkgver}.tar.gz)