summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9773177c1bb1c87d7cb776eaff3f2a33fb4d0fca (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
pkgname=libesedb
pkgver=20140406
pkgrel=1
pkgdesc="Library and tools to access the Extensible Storage Engine (ESE) Database File (EDB) format."
url="http://code.google.com/p/libesedb/"
arch=('any')
license=('LGPL')
depends=(glibc)
optdepends=()
makedepends=()
conflicts=()
replaces=()
backup=()
install=''
source=("https://googledrive.com/host/0B3fBvzttpiiSN082cmxsbHB0anc/libesedb-experimental-20140406.tar.gz")
sha1sums=('4649cdc6798e93b634ebe1e2c99af5c9fa4b5662')

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

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

# vim:set ts=2 sw=2 et: