Compare commits

..

16 Commits

Author SHA1 Message Date
R. Eric Wheeler faa4e842db Removed make test workaround 2015-08-07 13:09:12 -07:00
R. Eric Wheeler f60b6e83a7 Added travis-ci image 2015-08-07 13:08:14 -07:00
R. Eric Wheeler 0ad92c5ee9 removed make install 2015-08-07 13:05:41 -07:00
R. Eric Wheeler 08edb89a60 make test workaround 2015-08-07 13:03:24 -07:00
R. Eric Wheeler 4a513876d0 further trys 2015-08-07 12:56:28 -07:00
R. Eric Wheeler 0cfda4e459 PKG_CONFIGDIR workaround 2015-08-07 12:51:24 -07:00
R. Eric Wheeler cfc2e4d4fc good god 2015-08-07 12:48:25 -07:00
R. Eric Wheeler 9c3d03fc61 ....b 2015-08-07 12:46:37 -07:00
R. Eric Wheeler 84183ca3fc add configure 2015-08-07 12:45:16 -07:00
R. Eric Wheeler 9a986cb97b ... 2015-08-07 12:39:25 -07:00
R. Eric Wheeler 2a77bb139a More deps 2015-08-07 11:49:19 -07:00
R. Eric Wheeler cb278aa30c removed clang 2015-08-07 11:46:57 -07:00
R. Eric Wheeler 6c286085d7 Added pkg-config 2015-08-07 11:44:10 -07:00
R. Eric Wheeler 5bd47c5e45 Changed autoconf req to 2.50 2015-08-07 11:42:08 -07:00
R. Eric Wheeler e8d1f53a20 Fixed travis.yml 2015-08-07 11:38:52 -07:00
R. Eric Wheeler af10330cc6 Added travis.yml 2015-08-07 11:36:49 -07:00
6 changed files with 30 additions and 9 deletions

19
.travis.yml Normal file
View File

@ -0,0 +1,19 @@
language: cpp
compiler:
- gcc
before_install:
- ./autogen.sh
script: ./configure && make
branches:
only:
- master
notifications:
email: false
os:
- linux

View File

@ -13,3 +13,4 @@ MAINTAINERCLEANFILES = \
-rf m4 \
configure \
Makefile.in

View File

@ -1,5 +1,5 @@
# libpipecolors
[![Build Status](https://travis-ci.org/sk-5/libpipecolors.svg?branch=master)](https://travis-ci.org/sk-5/libpipecolors)
This library parses input like **_printf_** and **_sprintf_** but instead of returning a boring string it will replace renegade bbs style pipecodes (|09) with their ansi equivelent.

View File

@ -6,9 +6,9 @@ test -f configure && autoreconf -i && exit 0 ||
test -d autom4te.cache && rm -rf autom4te.cache
test -d config && rm -rf config
mkdir config || exit 1
libtoolize --install --copy || exit 1
aclocal -I config || exit 1
autoheader || exit 1
autoconf || exit 1
automake --add-missing --copy || exit 1
mkdir config
libtoolize --install --copy
aclocal -I config
autoheader
autoconf
automake --add-missing --copy --force

View File

@ -1,7 +1,7 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_PREREQ([2.50])
m4_define([pipecolors_version_major],[1])
m4_define([pipecolors_version_minor],[2])
@ -16,7 +16,7 @@ AC_SUBST([PIPECOLORS_VERSION_MINOR], [pipecolors_version_minor])
AC_SUBST([PIPECOLORS_VERSION_PATCH], [pipecolors_version_patch])
AC_SUBST([PIPECOLORS_VERSION], [pipecolors_version])
PKG_INSTALLDIR
#PKG_INSTALLDIR
AC_CONFIG_SRCDIR([src/libpipecolors.cc])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_AUX_DIR([config])

View File

@ -1,3 +1,4 @@
pkgconfigdir=/usr/lib/pkgconfig
pkgconfig_DATA = libpipecolors.pc pipecolors.pc
AM_LDFLAGS = $(LDFLAGS)