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>
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/"
16 source=(http://download.berlios.de/libebt/$pkgname-$pkgver.tar.bz2)
17 md5sums=('4db63470575336e27f89038d7c7cc01e')
20 cd "$srcdir/$pkgname-$pkgver"
22 ./configure --prefix=/usr
24 make check || return 1
25 make DESTDIR="$pkgdir/" install
28 # vim:set ts=2 sw=2 et: