1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-27 05:20:32 +01:00

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.
This commit is contained in:
Patrick Lühne
2018-08-23 18:51:12 +02:00
parent 8a37545084
commit d7d686ae61
2 changed files with 4 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
pkgbase = ruby-liquid pkgbase = ruby-liquid
pkgdesc = Liquid markup language. Safe, customer facing template language for flexible web apps pkgdesc = Liquid markup language. Safe, customer facing template language for flexible web apps
pkgver = 4.0.0 pkgver = 4.0.0
pkgrel = 3 pkgrel = 4
url = https://shopify.github.io/liquid/ url = https://shopify.github.io/liquid/
arch = any arch = any
license = MIT license = MIT
makedepends = ruby-rdoc
depends = ruby depends = ruby
options = !emptydirs options = !emptydirs
source = ruby-liquid-4.0.0.tar.gz::https://github.com/Shopify/liquid/archive/v4.0.0.tar.gz source = ruby-liquid-4.0.0.tar.gz::https://github.com/Shopify/liquid/archive/v4.0.0.tar.gz

View File

@@ -3,11 +3,12 @@
_gemname=liquid _gemname=liquid
pkgname=ruby-$_gemname pkgname=ruby-$_gemname
pkgver=4.0.0 pkgver=4.0.0
pkgrel=3 pkgrel=4
pkgdesc='Liquid markup language. Safe, customer facing template language for flexible web apps' pkgdesc='Liquid markup language. Safe, customer facing template language for flexible web apps'
url='https://shopify.github.io/liquid/' url='https://shopify.github.io/liquid/'
arch=('any') arch=('any')
license=('MIT') license=('MIT')
makedepends=('ruby-rdoc')
depends=('ruby') depends=('ruby')
options=('!emptydirs') options=('!emptydirs')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Shopify/${_gemname}/archive/v${pkgver}.tar.gz) source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Shopify/${_gemname}/archive/v${pkgver}.tar.gz)