[packages] add sqlite3-ruby, a Ruby interface for SQLite 3.x

git-svn-id: svn://svn.openwrt.org/openwrt/packages@20987 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-04-18 13:59:26 +00:00
parent 704b2a85a8
commit 280e62437e

View File

@ -0,0 +1,50 @@
#
# Copyright (C) 2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=sqlite3-ruby
PKG_VERSION:=1.2.4
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://files.rubyforge.vm.bytemark.co.uk/sqlite-ruby/
PKG_MD5SUM:=fe75fa99dd9a2b5a2f84ab484e7f6469
include $(INCLUDE_DIR)/package.mk
define Package/ruby-sqlite3
SUBMENU:=Ruby
SECTION:=lang
CATEGORY:=Languages
TITLE:=Ruby interface for SQLite
URL:=http://www.ruby-lang.org/
DEPENDS:=+libruby +libsqlite3
endef
RUBY:= \
ruby -I $(STAGING_DIR)/usr/share/ruby \
define Build/Configure
(cd $(PKG_BUILD_DIR)/ext/sqlite3_api; \
$(RUBY) extconf.rb; \
)
endef
define Build/Compile
(cd $(PKG_BUILD_DIR)/ext/sqlite3_api; \
$(MAKE); \
)
endef
define Package/ruby-sqlite3/install
$(INSTALL_DIR) $(1)/usr/lib/ruby/1.8
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ruby/site_ruby/1.8/* $(1)/usr/lib/ruby/1.8/
endef
$(eval $(call BuildPackage,ruby-sqlite3))