slitaz-forge rev 18

Add: actionmailer, actionpack, activerecord, activeresource, activesupport'
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 02 01:14:55 2011 +0100 (2011-03-02)
parents f61db34d5da2
children 76c71360e661
files actionmailer/receipt actionpack/receipt activerecord/receipt activeresource/receipt activesupport/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/actionmailer/receipt	Wed Mar 02 01:14:55 2011 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="actionmailer"
     1.7 +VERSION="2.3.5"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Simple, battle-tested conventions for building and testing MVC web applications."
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS="ruby actionpack"
    1.12 +BUILD_DEPENDS="rubygems"
    1.13 +TARBALL="$PACKAGE-$VERSION.gem"
    1.14 +WEB_SITE="http://rubygems.org/gems/actionmailer"
    1.15 +WGET_URL="http://rubygems.org/downloads/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	[ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION
    1.21 +	cd $src
    1.22 +
    1.23 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    1.24 +	gem install --no-rdoc --no-ri --ignore-dependencies \
    1.25 +		--install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    1.32 +	mkdir -p $fs/usr
    1.33 +	
    1.34 +	cp -a $_pkg/usr/lib $fs/usr
    1.35 +}
    1.36 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/actionpack/receipt	Wed Mar 02 01:14:55 2011 +0100
     2.3 @@ -0,0 +1,32 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="actionpack"
     2.7 +VERSION="2.3.5"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="Simple, battle-tested conventions for building and testing MVC web applications."
    2.10 +MAINTAINER="erjo@slitaz.org"
    2.11 +DEPENDS="ruby activesupport"
    2.12 +DEPENDS="rubygems"
    2.13 +TARBALL="$PACKAGE-$VERSION.gem"
    2.14 +WEB_SITE="http://rubygems.org/gems/actionpack"
    2.15 +WGET_URL="http://rubygems.org/downloads/$TARBALL"
    2.16 +
    2.17 +# Rules to configure and make the package.
    2.18 +compile_rules()
    2.19 +{
    2.20 +	[ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION
    2.21 +	cd $src
    2.22 +
    2.23 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    2.24 +	gem install --no-rdoc --no-ri --ignore-dependencies \
    2.25 +		--install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL
    2.26 +}
    2.27 +
    2.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.29 +genpkg_rules()
    2.30 +{
    2.31 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    2.32 +	mkdir -p $fs/usr
    2.33 +	
    2.34 +	cp -a $_pkg/usr/lib $fs/usr
    2.35 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/activerecord/receipt	Wed Mar 02 01:14:55 2011 +0100
     3.3 @@ -0,0 +1,32 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="activerecord"
     3.7 +VERSION="2.3.5"
     3.8 +CATEGORY="system-tools"
     3.9 +SHORT_DESC="Rich support for multibyte strings"
    3.10 +MAINTAINER="erjo@slitaz.org"
    3.11 +DEPENDS="ruby activesupport"
    3.12 +BUILD_DEPENDS="rubygems"
    3.13 +TARBALL="$PACKAGE-$VERSION.gem"
    3.14 +WEB_SITE="http://rubygems.org/gems/activesupport"
    3.15 +WGET_URL="http://rubygems.org/downloads/$TARBALL"
    3.16 +
    3.17 +# Rules to configure and make the package.
    3.18 +compile_rules()
    3.19 +{
    3.20 +	[ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION
    3.21 +	cd $src
    3.22 +
    3.23 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    3.24 +	gem install --no-rdoc --no-ri --ignore-dependencies \
    3.25 +		--install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL
    3.26 +}
    3.27 +
    3.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.29 +genpkg_rules()
    3.30 +{
    3.31 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    3.32 +	mkdir -p $fs/usr
    3.33 +	
    3.34 +	cp -a $_pkg/usr/lib $fs/usr
    3.35 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/activeresource/receipt	Wed Mar 02 01:14:55 2011 +0100
     4.3 @@ -0,0 +1,32 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="activeresource"
     4.7 +VERSION="2.3.5"
     4.8 +CATEGORY="ddevelopment"
     4.9 +SHORT_DESC="REST on Rails."
    4.10 +MAINTAINER="erjo@slitaz.org"
    4.11 +DEPENDS="ruby activesupport"
    4.12 +BUID_DEPENDS="rubygems"
    4.13 +TARBALL="$PACKAGE-$VERSION.gem"
    4.14 +WEB_SITE="http://rubygems.org/gems/activeresource"
    4.15 +WGET_URL="http://rubygems.org/downloads/$TARBALL"
    4.16 +
    4.17 +# Rules to configure and make the package.
    4.18 +compile_rules()
    4.19 +{
    4.20 +	[ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION
    4.21 +	cd $src
    4.22 +
    4.23 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    4.24 +	gem install --no-rdoc --no-ri --ignore-dependencies \
    4.25 +		--install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL
    4.26 +}
    4.27 +
    4.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.29 +genpkg_rules()
    4.30 +{
    4.31 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    4.32 +	mkdir -p $fs/usr
    4.33 +	
    4.34 +	cp -a $_pkg/usr/lib $fs/usr
    4.35 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/activesupport/receipt	Wed Mar 02 01:14:55 2011 +0100
     5.3 @@ -0,0 +1,33 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="activesupport"
     5.7 +VERSION="2.3.5"
     5.8 +CATEGORY="system-tools"
     5.9 +SHORT_DESC="Database tables mapping to Ruby classes"
    5.10 +MAINTAINER="erjo@slitaz.org"
    5.11 +DEPENDS="ruby"
    5.12 +BUILD_DEPENDS="rubygems"
    5.13 +TARBALL="$PACKAGE-$VERSION.gem"
    5.14 +WEB_SITE="http://rubygems.org/gems/activerecord"
    5.15 +WGET_URL="http://rubygems.org/downloads/$TARBALL"
    5.16 +
    5.17 +# Rules to configure and make the package.
    5.18 +compile_rules()
    5.19 +{
    5.20 +	[ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION
    5.21 +	#mv -f *.gem $PACKAGE-$VERSION	
    5.22 +	cd $src
    5.23 +	wget "http://rubygems.org/downloads/$TARBALL"
    5.24 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    5.25 +	gem install --no-rdoc --no-ri --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $TARBALL
    5.26 +}
    5.27 +
    5.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.29 +genpkg_rules()
    5.30 +{
    5.31 +	RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')"
    5.32 +	mkdir -p $fs/usr
    5.33 +	
    5.34 +	cp -a $_pkg/usr/lib $fs/usr
    5.35 +}
    5.36 +