summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1406e52d93e61a9381e2e2a7f37ade3eb65e40e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=pgbrowse
pkgver=1.9
pkgrel=2
pkgdesc="PgBrowse is a graphical PostgreSQL client. It will allow the user to connect to a PostgreSQL database and execute SQL commands (and much more)."
url="https://github.com/Geballin/PgBrowse"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=('tcl' 'tk' 'tcllib' 'tktable')
optdepends=()
makedepends=(make)
conflicts=()
replaces=()
backup=()
install=
source=("https://github.com/Geballin/PgBrowse/archive/${pkgver}.tar.gz")

md5sums=('d0f919afbc838b116927dbe2dce5c4a1')

build() {
  cd "${srcdir}/PgBrowse-${pkgver}"
  ./configure --prefix=/usr
  make
  }

package() {
  cd "${srcdir}/PgBrowse-${pkgver}"
  make DESTDIR="${pkgdir}" install
  }