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

Compare commits

...

7 Commits

Author SHA1 Message Date
9423172b1a upgpkg: ruby-jekyll-seo-tag 2.8.0-1
upstream release
2022-02-05 11:42:40 +01:00
2e980bfeaa Add 'ruby-jekyll-seo-tag/' from commit 'a1e5cf4fb3c8435087515224ef980054ceed553f'
git-subtree-dir: ruby-jekyll-seo-tag
git-subtree-mainline: 66ffcffff1
git-subtree-split: a1e5cf4fb3
2022-02-05 11:25:01 +01:00
a1e5cf4fb3 Update to 2.7.1. 2020-10-18 16:51:12 +02:00
f3e8285706 Update to 2.6.1. 2019-09-15 11:12:14 +02:00
Ankit R Gadiya
c536c2a011 Version Bump 2.5.0 2018-05-22 10:52:30 +05:30
Ankit R Gadiya
54b35332ea Removed unnecessary make dependencies 2018-04-16 23:50:41 +05:30
Ankit R Gadiya
f87f356e8a Initial Commit 2018-04-13 16:31:48 +05:30
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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.8.0
pkgrel = 1
url = https://rubygems.org/gems/jekyll-seo-tag
arch = any
license = MIT
depends = jekyll
noextract = jekyll-seo-tag-2.8.0.gem
source = https://rubygems.org/downloads/jekyll-seo-tag-2.8.0.gem
sha256sums = 3f2ed1916d56f14ebfa38e24acde9b7c946df70cb183af2cb5f0598f21ae6818
pkgname = ruby-jekyll-seo-tag

4
ruby-jekyll-seo-tag/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
pkg/
src/
*.tar.xz
*.gem

View File

@@ -0,0 +1,21 @@
# Maintainer: Ankit R Gadiya <arch@argp.in>
pkgname=ruby-jekyll-seo-tag
pkgver=2.8.0
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=('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=('3f2ed1916d56f14ebfa38e24acde9b7c946df70cb183af2cb5f0598f21ae6818')
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"
}