mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
testing/ruby-github-markdown: new aport
Self-contained Markdown parser for GitHub, with all our custom extensions http://rubygems.org/gems/github-markdown
This commit is contained in:
parent
27cbae88a0
commit
f00cddf6ad
1 changed files with 39 additions and 0 deletions
39
testing/ruby-github-markdown/APKBUILD
Normal file
39
testing/ruby-github-markdown/APKBUILD
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Contributor: Seung Soo Mun <hamletmun@gmail.com>
|
||||
# Maintainer:
|
||||
_gemname=github-markdown
|
||||
pkgname=ruby-$_gemname
|
||||
pkgver=0.6.5
|
||||
pkgrel=0
|
||||
pkgdesc="Self-contained Markdown parser for GitHub, with all our custom extensions"
|
||||
url="http://rubygems.org/gems/$_gemname"
|
||||
arch="all"
|
||||
license="MIT"
|
||||
depends="ruby"
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://gems.rubyforge.org/gems/$_gemname-$pkgver.gem"
|
||||
|
||||
_builddir="$srcdir"/$_realname-$pkgver
|
||||
|
||||
build() {
|
||||
return 0
|
||||
}
|
||||
|
||||
package() {
|
||||
local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
|
||||
local _geminstdir=$_gemdir/gems/$_gemname-$pkgver
|
||||
mkdir -p "$pkgdir" || return 1
|
||||
|
||||
gem install --local --install-dir "$pkgdir"/$_gemdir \
|
||||
--ignore-dependencies --verbose --no-rdoc --no-ri \
|
||||
"$srcdir"/$_gemname-$pkgver.gem || return 1
|
||||
rm -rf "$pkgdir"/$_gemdir/cache \
|
||||
"$pkgdir"/$_geminstdir/ext \
|
||||
"$pkgdir"/$_geminstdir/.require_paths
|
||||
}
|
||||
|
||||
md5sums="c08aa1a1480236b97778161139053af1 github-markdown-0.6.5.gem"
|
||||
sha256sums="69255d3878ff798ae4bec89f5f6552f72f5447dbd15ad3beecd1bf2cedf75277 github-markdown-0.6.5.gem"
|
||||
sha512sums="1ff33c6a837f5e31d08930e65f35e7d51d55bc3f9bcd87e367066d39aa948e0e859fc32beb31114f15e7d31b9a6756a51a506aead3dc996118392a6aa3290c48 github-markdown-0.6.5.gem"
|
Loading…
Add table
Add a link
Reference in a new issue