diff --git a/ruby-jekyll-seo-tag/.SRCINFO b/ruby-jekyll-seo-tag/.SRCINFO new file mode 100644 index 0000000..fc75489 --- /dev/null +++ b/ruby-jekyll-seo-tag/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = ruby-jekyll-seo-tag + pkgdesc = A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content + pkgver = 2.7.1 + pkgrel = 1 + url = https://rubygems.org/gems/jekyll-seo-tag + arch = any + license = MIT + depends = ruby + depends = jekyll + noextract = jekyll-seo-tag-2.7.1.gem + source = https://rubygems.org/downloads/jekyll-seo-tag-2.7.1.gem + sha256sums = 838bcc05d9f0b342f50a1cea19b8fc99f9728910da99203cd75cccea6139513b + +pkgname = ruby-jekyll-seo-tag + diff --git a/ruby-jekyll-seo-tag/.gitignore b/ruby-jekyll-seo-tag/.gitignore new file mode 100644 index 0000000..9d4f281 --- /dev/null +++ b/ruby-jekyll-seo-tag/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.tar.xz +*.gem diff --git a/ruby-jekyll-seo-tag/PKGBUILD b/ruby-jekyll-seo-tag/PKGBUILD new file mode 100644 index 0000000..9b2fa66 --- /dev/null +++ b/ruby-jekyll-seo-tag/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Ankit R Gadiya + +pkgname=ruby-jekyll-seo-tag +pkgver=2.7.1 +pkgrel=1 +pkgdesc="A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content" +arch=('any') +depends=('ruby' 'jekyll') +url="https://rubygems.org/gems/jekyll-seo-tag" +noextract=("jekyll-seo-tag-${pkgver}.gem") +license=('MIT') +source=("https://rubygems.org/downloads/jekyll-seo-tag-${pkgver}.gem") +sha256sums=('838bcc05d9f0b342f50a1cea19b8fc99f9728910da99203cd75cccea6139513b') + +package() { + local _gemdir="$(ruby -e'puts Gem.default_dir')" + gem install --ignore-dependencies --no-user-install -i "${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" "jekyll-seo-tag-${pkgver}.gem" + rm "${pkgdir}/${_gemdir}/cache/jekyll-seo-tag-${pkgver}.gem" + + install -Dm644 "${pkgdir}/${_gemdir}/gems/jekyll-seo-tag-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}