updated on Sun Jan 22 20:01:29 UTC 2012
[aur-mirror.git] / libebt / PKGBUILD
blob8661f1909c3736fc35d812547a83c09978d23467
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
7 pkgname=libebt
8 pkgver=1.3.0
9 pkgrel=1
10 pkgdesc="The libebt library provides a clean way of getting human-readable backtrace messages in C++."
11 arch=('i686' 'x86_64')
12 url="http://libebt.berlios.de/"
13 license=('BSD')
14 depends=()
15 makedepends=('gcc')
16 source=(http://download.berlios.de/libebt/$pkgname-$pkgver.tar.bz2)
17 md5sums=('4db63470575336e27f89038d7c7cc01e')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
22   ./configure --prefix=/usr
23   make || return 1
24   make check || return 1
25   make DESTDIR="$pkgdir/" install
28 # vim:set ts=2 sw=2 et: