Added postgresql-8.4.2 build template.
--HG-- extra : convert_revision : bc2fb198b40e73611b230fdd576883f7cb1c0a06
This commit is contained in:
parent
96a0926cce
commit
888834d9c5
20 changed files with 438 additions and 0 deletions
20
srcpkgs/postgresql/postgresql-libs.template
Normal file
20
srcpkgs/postgresql/postgresql-libs.template
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Template file for 'postgresql-libs'.
|
||||
#
|
||||
short_desc="PostgreSQL shared libraries"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package provides the shared libraries used by PostgreSQL applications."
|
||||
|
||||
Add_dependency run glibc
|
||||
Add_dependency run openssl
|
||||
|
||||
do_install()
|
||||
{
|
||||
mkdir -p ${DESTDIR}/usr/lib
|
||||
mv ${SRCPKGDESTDIR}/usr/lib/*.so.* ${DESTDIR}/usr/lib
|
||||
for d in $(find ${SRCPKGDESTDIR}/usr/share/locale \
|
||||
-type f -name libpq5\*); do
|
||||
mkdir -p ${DESTDIR}/$(dirname ${d#${SRCPKGDESTDIR}})
|
||||
mv ${d} ${DESTDIR}/$(dirname ${d#${SRCPKGDESTDIR}})
|
||||
done
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue