Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Add cxxtest 4.4.
Browse files Browse the repository at this point in the history
Unit test framework for C++.
  • Loading branch information
pavoljuhas committed Sep 4, 2015
1 parent 16490e4 commit d602afc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cxxtest/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

MYBINDIR="${PREFIX}/bin"
MYSUFFIXDIR="lib/${PKG_NAME}-${PKG_VERSION}"
MYTARGETDIR="${PREFIX}/${MYSUFFIXDIR}"

mkdir -p "${MYBINDIR}"
mkdir -p "${MYTARGETDIR}"
cp -r ./ "${MYTARGETDIR}/"
ln -s "../${MYSUFFIXDIR}/bin/cxxtestgen" "${MYBINDIR}/"
26 changes: 26 additions & 0 deletions cxxtest/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package:
name: cxxtest
version: "4.4"

source:
fn: cxxtest-4.4.tar.gz
url: https://github.com/CxxTest/cxxtest/releases/download/4.4/cxxtest-4.4.tar.gz
sha256: 1c154fef91c65dbf1cd4519af7ade70a61d85a923b6e0c0b007dc7f4895cf7d8

build:
number: 0

requirements:
run:
- python

test:
commands:
# You can put test commands to be run here. Use this to test that the
# entry points work.
- cxxtestgen --version | fgrep -q "CxxTest version ${PKG_VERSION}."

about:
home: http://cxxtest.com/
license: GPL 3
summary: "CxxTest Unit Testing Framework."

0 comments on commit d602afc

Please sign in to comment.