From c1d3da9ca87c414100b1cb969e36b8d7d05b9a74 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 10 Aug 2022 09:16:34 +0100 Subject: added ovmf, lolcat, spice, and squashfstools --- repo/ruby-kramdown/ruby-kramdown.xibuild | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 repo/ruby-kramdown/ruby-kramdown.xibuild (limited to 'repo/ruby-kramdown/ruby-kramdown.xibuild') diff --git a/repo/ruby-kramdown/ruby-kramdown.xibuild b/repo/ruby-kramdown/ruby-kramdown.xibuild new file mode 100644 index 0000000..e3dd94a --- /dev/null +++ b/repo/ruby-kramdown/ruby-kramdown.xibuild @@ -0,0 +1,48 @@ +#!/bin/sh + +NAME="ruby-kramdown" +_gemname=kramdown +DESC="A fast, pure Ruby Markdown superset converter" + +MAKEDEPS=" ruby-rake" + +PKG_VER=2.3.2 +SOURCE="https://github.com/gettalong/kramdown" + +ADDITIONAL=" +gemspec.patch +" + +prepare() { + apply_patches + + # Remove tests that require gem "stringex" (we don't have it in aports yet). + rm test/testcases/block/04_header/with_auto_ids.* +} + +build() { + rake gemspec + gem build $_gemname.gemspec +} + +check() { + rake test +} + +package() { + local gemdir="$PKG_DEST/$(ruby -e 'puts Gem.default_dir')" + + gem install \ + --local \ + --install-dir "$gemdir" \ + --bindir "$PKG_DEST/usr/bin" \ + --ignore-dependencies \ + --no-document \ + --verbose \ + $_gemname + + # Remove unnecessary files and rubbish... + cd "$gemdir" + rm -r cache build_info doc extensions +} + -- cgit v1.2.1