wok view pgadmin/receipt @ rev 14730

Up xorg-xf86-video-ati (7.1.0), xorg-xf86-video-fbdev (0.4.3), xorg-xf86-video-geode (2.11.14), xorg-xf86-video-i740 (1.3.4), xorg-xf86-video-neomagic (1.2.7), xorg-xf86-video-nv (2.1.20), xorg-xf86-video-s3 (0.6.5), xorg-xf86-video-trident (1.3.6), xorg-xf86-video-vesa (2.3.2), xorg-xf86-video-vmware (13.0.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 13 10:45:31 2013 +0200 (2013-06-13)
parents edb9c2957254
children 51a1ebbda768
line source
1 # SliTaz package receipt.
3 PACKAGE="pgadmin"
4 VERSION="1.10.0"
5 CATEGORY="utilities"
6 SHORT_DESC="PostgreSQL administration an management tools"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="postgresql wxWidgets gtk+ libxslt libcomerr3 libkrb5 xorg-libXxf86vm"
9 BUILD_DEPENDS="libcrypto postgresql postgresql-dev libxslt-dev libxml2-dev wxWidgets-dev"
10 SOURCE="pgadmin3"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.pgadmin.org"
13 WGET_URL="ftp://ftp.ch.postgresql.org/mirror/postgresql/pgadmin3/release/v$VERSION/src/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/pgadmin3/i18n
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/pgadmin3/*.ini $fs/usr/share/pgadmin3
34 cp -a $_pkg/usr/share/pgadmin3/branding $fs/usr/share/pgadmin3
35 cp -a $_pkg/usr/share/pgadmin3/i18n/fr_FR $fs/usr/share/pgadmin3/i18n
36 cp -a $_pkg/usr/share/pgadmin3/i18n/*.lng $fs/usr/share/pgadmin3/i18n
38 cp -a stuff/applications $fs/usr/share
39 cp -a stuff/icons $fs/usr/share
40 }