20 lines
503 B
Plaintext
20 lines
503 B
Plaintext
# Description: Ruby bindings for SQLite3
|
|
# URL: https://github.com/sparklemotion/sqlite3-ruby
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: ruby sqlite3
|
|
|
|
name=ruby-sqlite3
|
|
version=1.4.2
|
|
release=2
|
|
source=(https://github.com/sparklemotion/sqlite3-ruby/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd sqlite3-ruby-$version
|
|
|
|
gem install sqlite3 \
|
|
--ignore-dependencies \
|
|
--no-user-install \
|
|
--no-document \
|
|
--build-root $PKG
|
|
}
|