summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d7bda2c15a2fa9f847150ecc344308971ff8062f (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: MobiusHorizons <codemobius@gmail.com>
pkgname=libe
pkgver=0.11.0
pkgrel=2
pkgdesc="Library containing high-performance datastructures and utilities for C++ used by hyperdex"
url="https://github.com/rescrv/e"
arch=('x86_64' 'i686')
license=('BSD')
depends=('libpo6')
makedepends=('wget' 'gcc') 
conflicts=()
replaces=()
backup=()
source=("http://hyperdex.org/src/${pkgname}-${pkgver}.tar.gz")
md5sums=('8ddff754a8478fcd9f2face6c18c5ef6')

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

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}

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