diff options
-rw-r--r-- | packages/postgresql/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/postgresql/postgresql_8.1.4.bb | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/packages/postgresql/.mtn2git_empty b/packages/postgresql/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/postgresql/.mtn2git_empty diff --git a/packages/postgresql/postgresql_8.1.4.bb b/packages/postgresql/postgresql_8.1.4.bb new file mode 100644 index 0000000000..df6131161e --- /dev/null +++ b/packages/postgresql/postgresql_8.1.4.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "PostgreSQL is a powerful, open source relational database system." +HOMEPAGE = "http://www.postgresql.com" +LICENSE = "BSD" +DEPENDS = "zlib readline" + +#WARNING: this recipe assumes you have the timezone compiler present in /usr/sbin/zic + +SRC_URI = "ftp://ftp.nl.postgresql.org/pub/mirror/postgresql/source/v${PV}/${P}.tar.bz2" + + +inherit autotools pkgconfig + +FILES_${PN}-doc += "${prefix}/doc/" + +do_compile_append() { +cp /usr/sbin/zic ${S}/src/timezone/ +} + + + |