Compare commits
No commits in common. "master" and "testing" have entirely different histories.
19
.travis.yml
19
.travis.yml
|
@ -1,19 +0,0 @@
|
|||
language: cpp
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
before_install:
|
||||
- ./autogen.sh
|
||||
|
||||
script: ./configure && make
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
|
||||
os:
|
||||
- linux
|
|
@ -13,4 +13,3 @@ 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
|
||||
libtoolize --install --copy
|
||||
aclocal -I config
|
||||
autoheader
|
||||
autoconf
|
||||
automake --add-missing --copy --force
|
||||
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
|
|
@ -1,7 +1,7 @@
|
|||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ([2.50])
|
||||
AC_PREREQ([2.69])
|
||||
|
||||
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,4 +1,3 @@
|
|||
pkgconfigdir=/usr/lib/pkgconfig
|
||||
pkgconfig_DATA = libpipecolors.pc pipecolors.pc
|
||||
|
||||
AM_LDFLAGS = $(LDFLAGS)
|
||||
|
|
Loading…
Reference in New Issue