diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-16 15:24:55 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-16 15:24:55 +0000 |
commit | 39029e48870ca52e1af7d31220f2245358421d89 (patch) | |
tree | eb6c6f87dc69ee83fae42db86c53210474fc4408 /packages/postgresql | |
parent | 7dd256b002283caf82475fcafacc2f83c03ea23e (diff) |
postgresql: Upstream upgrade to 8.1.8
Diffstat (limited to 'packages/postgresql')
-rw-r--r-- | packages/postgresql/postgresql_8.1.8.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/postgresql/postgresql_8.1.8.bb b/packages/postgresql/postgresql_8.1.8.bb new file mode 100644 index 0000000000..be44052437 --- /dev/null +++ b/packages/postgresql/postgresql_8.1.8.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.us.postgresql.org/pub/mirrors/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/ +} + + + |