Compare commits
16 Commits
Author | SHA1 | Date |
---|---|---|
R. Eric Wheeler | faa4e842db | |
R. Eric Wheeler | f60b6e83a7 | |
R. Eric Wheeler | 0ad92c5ee9 | |
R. Eric Wheeler | 08edb89a60 | |
R. Eric Wheeler | 4a513876d0 | |
R. Eric Wheeler | 0cfda4e459 | |
R. Eric Wheeler | cfc2e4d4fc | |
R. Eric Wheeler | 9c3d03fc61 | |
R. Eric Wheeler | 84183ca3fc | |
R. Eric Wheeler | 9a986cb97b | |
R. Eric Wheeler | 2a77bb139a | |
R. Eric Wheeler | cb278aa30c | |
R. Eric Wheeler | 6c286085d7 | |
R. Eric Wheeler | 5bd47c5e45 | |
R. Eric Wheeler | e8d1f53a20 | |
R. Eric Wheeler | af10330cc6 |
|
@ -0,0 +1,19 @@
|
|||
language: cpp
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
before_install:
|
||||
- ./autogen.sh
|
||||
|
||||
script: ./configure && make
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
|
||||
os:
|
||||
- linux
|
|
@ -13,3 +13,4 @@ MAINTAINERCLEANFILES = \
|
|||
-rf m4 \
|
||||
configure \
|
||||
Makefile.in
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
12
autogen.sh
12
autogen.sh
|
@ -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
|
|
@ -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])
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
pkgconfigdir=/usr/lib/pkgconfig
|
||||
pkgconfig_DATA = libpipecolors.pc pipecolors.pc
|
||||
|
||||
AM_LDFLAGS = $(LDFLAGS)
|
||||
|
|
Loading…
Reference in New Issue