summaryrefslogtreecommitdiffstats
path: root/abs/extra/mdbtools/PKGBUILD
blob: c7a562d821ccfadc1b2b19bbda81e1dfe2a1ce42 (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
# Contributor: TDY <tdy@gmx.com>
# Contributor: Eduard "bekks" Warkentin <eduard.warkentin@gmail.com>
pkgname=mdbtools
pkgver=0.5
pkgrel=8
pkgdesc="Utilities for viewing data and exporting schema from Microsoft Access Database files"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/mdbtools/"
license=('LGPL' 'GPL')
depends=('libgnomeui')
makedepends=('bison' 'flex')
options=('!libtool')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
        gmdb2.desktop)
md5sums=('4a18bf96e67161101cade64526756d22'
         '289f236ca91d73510e842922b5776999')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
  make || return 1
  make DESTDIR="$pkgdir" install
  install -Dm644 ../gmdb2.desktop "$pkgdir/usr/share/applications/gmdb2.desktop"
}