mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 10:21:10 +02:00
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# Contributor: Seung Soo Mun <hamletmun@gmail.com>
|
|
# Maintainer:
|
|
_gemname=github-markdown
|
|
pkgname=ruby-$_gemname
|
|
pkgver=0.6.5
|
|
pkgrel=1
|
|
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 ruby-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"
|