20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
# Description: Ruby bindings for MySQL
|
|
# URL: https://github.com/brianmario/mysql2
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: ruby mysql
|
|
|
|
name=ruby-mysql
|
|
version=0.5.2
|
|
release=1
|
|
source=(https://github.com/brianmario/mysql2/archive/$version/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd mysql2-$version
|
|
|
|
gem install mysql2 \
|
|
--ignore-dependencies \
|
|
--no-user-install \
|
|
--no-document \
|
|
--build-root $PKG
|
|
}
|