Bundle requires the following extensions, which must be manually installed before bundle can be installed:
- meta
- uuid-ossp (included with PostgreSQL)
- pgcrypto (included with PostgreSQL)
cd bundle/
make && make install
-- first install the meta extension
create extension if not exists hstore schema public;
create extension if not exists meta;
-- install bundle's dependencies
create extension if not exists pgcrypto schema public;
create extension if not exists "uuid-ossp" schema public;
-- install bundle
create extension bundle;