mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
565 B
Bash
24 lines
565 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Jeff 'codemac' Mickey <jeff@archlinux.org>
|
||
|
|
||
|
pkgname=cppunit
|
||
|
pkgver=1.12.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A C++ unit testing framework"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://cppunit.sourceforge.net"
|
||
|
license=('LGPL')
|
||
|
depends=()
|
||
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
makedepends=('gcc')
|
||
|
options=(!libtool)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|
||
|
md5sums=('bd30e9cf5523cdfc019b94f5e1d7fd19')
|