Skip to content

Instantly share code, notes, and snippets.

@dezull
Created October 19, 2012 07:35
Show Gist options
  • Save dezull/3916748 to your computer and use it in GitHub Desktop.
Save dezull/3916748 to your computer and use it in GitHub Desktop.
sqlite3-pcre
#!/bin/bash
# with macports installed
sudo port install sqlite3 &&
git clone https://github.com/oojah/sqlite3-pcre.git sqlite3-pcre &&
cd sqlite3-pcre &&
gcc -shared -o pcre.so -L/opt/local/lib -lsqlite3 -lpcre -Werror pcre.c -I/opt/local/include &&
sudo cp pcre.so /opt/local/lib/sqlite3 &&
echo ".load /opt/local/lib/sqlite3/pcre.so" > ~/.sqliterc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment