wok-next annotate ruby-date/receipt @ rev 21247

updated cyrus-imapd (2.4.17 -> 3.0.12)
author Hans-G?nter Theisgen
date Thu Dec 05 16:28:27 2019 +0100 (2019-12-05)
parents d5aab818505e
children
rev   line source
al@20910 1 # SliTaz package receipt v2.
al@20910 2
al@20910 3 PACKAGE="ruby-date" # ruby-stdlib already provides date
al@20910 4 VERSION="1.0.0"
al@20910 5 CATEGORY="ruby"
al@20910 6 SHORT_DESC="Subclass of Object includes Comparable module for handling dates"
al@20910 7 MAINTAINER="al.bobylev@gmail.com"
al@20910 8 LICENSE="BSD"
al@20910 9 WEB_SITE="https://rubygems.org/gems/${PACKAGE#*-}"
al@20910 10 REPOLOGY="${PACKAGE/-/:}"
al@20910 11
al@20910 12 TARBALL="${PACKAGE#*-}-$VERSION.gem"
al@20910 13 WGET_URL="https://rubygems.org/downloads/$TARBALL"
al@20910 14
al@21094 15 COOKOPTS="force-arch" # arch-specific paths for gem.build_complete
al@21094 16
al@20910 17 BUILD_DEPENDS="ruby-dev"
al@20910 18 SPLIT="$PACKAGE-dev"
al@20910 19
al@20910 20 compile_rules() {
al@20910 21 gem install \
al@20910 22 --no-document \
al@20910 23 --ignore-dependencies \
al@20910 24 --no-user-install \
al@20910 25 --build-root $install \
al@20910 26 $src/$TARBALL &&
al@20910 27 fix gem
al@20910 28 }
al@20910 29
al@20910 30 genpkg_rules() {
al@20910 31 case $PACKAGE in
al@20910 32 *-dev)
al@20910 33 copy @ruby-dev
al@20910 34 ;;
al@20910 35 *)
al@20910 36 copy @ruby
al@20910 37 DEPENDS="ruby"
al@20910 38 ;;
al@20910 39 esac
al@20910 40 }