Skip to content

Commit 6b3533a

Browse files
author
Ben Collins
committed
Initial commit of skeleton repo
Signed-off-by: Ben Collins <ben@cyphre.com>
0 parents  commit 6b3533a

23 files changed

+4559
-0
lines changed

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Generic ignores for libtool project
2+
Makefile.in
3+
Makefile
4+
/autom4te.cache
5+
/aclocal.m4
6+
/compile
7+
/configure
8+
/depcomp
9+
/install-sh
10+
/missing
11+
/stamp-h1
12+
/m4/*.m4
13+
/config.guess
14+
/config.sub
15+
/config.log
16+
/config.status
17+
/ltmain.sh
18+
/libtool
19+
*/.deps/*
20+
*.la
21+
*.lo
22+
*.o
23+
*/.libs/*
24+
*/config.h
25+
*/config.h.in
26+
*/stamp-h1
27+
/test-driver
28+
/coverage.info
29+
/coveragereport/*
30+
*.gcno
31+
32+
# Explicit stuff
33+
!/m4/ax_check_openssl.m4
34+
!/m4/doxygen.m4
35+
!/m4/ax_code_coverage.m4
36+
!/m4/ax_valgrind_check.m4
37+
/doxygen-doc/*
38+
/libibrato/libibrato.pc

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
dist: trusty
2+
language: c
3+
cache: ccache
4+
compiler:
5+
- gcc
6+
before_install:
7+
- sudo pip install codecov
8+
install:
9+
- sudo apt-get update -qq
10+
- sudo apt-get install -y -qq libjansson-dev check lcov libcurl4-openssl-dev
11+
script:
12+
- autoreconf -i && ./configure --enable-code-coverage && make check-code-coverage
13+
after_success:
14+
- codecov

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ben Collins <ben@cyphre.com>

COPYING.LIB

+515
Large diffs are not rendered by default.

ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please see http://github.com/benmcollins/libibrato

0 commit comments

Comments
 (0)