mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
746 B
Bash
33 lines
746 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=cpptest
|
||
|
pkgver=1.1.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A portable and powerful unit testing framework for handling automated tests in C++."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://cpptest.sourceforge.net/"
|
||
|
license="LGPL"
|
||
|
depends=('gcc-libs')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('b50379402d69d40417add19ef88f9938')
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package()
|
||
|
{
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|