You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
34b3070336
for pf in */*/Portfile
do
ed -s "$pf" <<-'EOF'
1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
1g/^[[:space:]]*$/d
w
q
EOF
done
22 lines
817 B
Plaintext
22 lines
817 B
Plaintext
PortSystem 1.0
|
|
PortGroup ruby 1.0
|
|
|
|
ruby.setup {sqlite sqlite-ruby} 2.2.3 gem {} rubygems
|
|
maintainers nomaintainer
|
|
description Interface to the SQLite DB engine from Ruby
|
|
long_description Provides an interface for the SQLite DB engine. This \
|
|
differs from the 'ruby-sqlite' project (also on RAA) \
|
|
in that it is more complete, and from the ruby DBI \
|
|
version of SQLite in that it is SQLite specific, so \
|
|
you can do things that would otherwise be more \
|
|
difficult via DBI. If you want portability between \
|
|
backends, use DBI. If you want ease of use with \
|
|
SQLite, use this. \
|
|
Note that this module is NOT compatible with SQLite3.
|
|
categories-append databases
|
|
license BSD
|
|
checksums md5 ec4cdd775419f81b3314c0a7300f6d36
|
|
platforms darwin
|
|
|
|
depends_lib-append port:sqlite2
|