c0558904a1
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6623 3c298f89-4303-0410-b956-a3cf2f4a3e73
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ruby
|
|
PKG_VERSION:=1.8.5-p12
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=ftp://ftp.ruby-lang.org/pub/ruby/1.8/
|
|
PKG_MD5SUM:=d7d12dd9124c9b7d55cdbbee313e3931
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ruby
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Ruby object-oriented scripting language interpreter
|
|
DESCRIPTION:=\
|
|
Ruby is the interpreted scripting language for quick and \\\
|
|
easy object-oriented programming. It has many features to \\\
|
|
process text files and to do system management tasks (as in \\\
|
|
perl). It is simple, straight-forward, and extensible.
|
|
URL:=http://www.ruby-lang.org/
|
|
endef
|
|
|
|
#use Build/Configure/Default
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
SHELL="/bin/bash" \
|
|
all install
|
|
endef
|
|
|
|
define Package/ruby/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ruby $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ruby))
|
|
|
|
$(eval $(call RequireCommand,/usr/bin/ruby, \
|
|
Ruby requires ruby installed on the host-system. \
|
|
))
|