pg-libphonenumber/README.md

41 lines
1.1 KiB
Markdown
Raw Normal View History

2015-07-24 21:27:51 +00:00
# pg-libphonenumber
2017-02-18 17:46:11 +00:00
A (partially implemented!) PostgreSQL extension that provides access to
[Google's `libphonenumber`](https://github.com/googlei18n/libphonenumber)
2015-07-24 21:27:51 +00:00
## Project status
2017-02-18 17:46:11 +00:00
This extension is in an <strong>alpha</strong> state. It's not complete or
tested enough for critical production deployments, but with a little help, we
should be able to get it there.
## Synopsis
CREATE EXTENSION pg_libphonenumber;
SELECT parse_phone_number('03 7010 1234', 'AU');
SELECT parse_phone_number('2819010011', 'US');
2017-02-18 17:46:11 +00:00
CREATE TABLE foo ( ph phone_number );
2017-02-18 17:46:11 +00:00
-- DO NOT RELY ON THIS
-- may not always this work way with implicit cast.
2017-02-18 17:46:11 +00:00
SELECT '2819010011'::phone_number; -- assumes US
## Installation
### Debian/Ubuntu
First you need install `libphonenumber-dev` and the corresponding `postgresql-server-dev` package.
sudo apt-get install build-essential
sudo apt-get install postgresql-server-dev-9.5
sudo apt-get install libphonenumber-dev
Then clone this repostiroy
cd /tmp
git clone https://github.com/blm768/pg-libphonenumber
cd pg-libphonenumber
make
sudo make install