• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H03-May-2022-298241

cmake/H09-Nov-2018-97

doc/H09-Nov-2018-1,7241,243

m4/H09-Nov-2018-9,4938,605

spec/H09-Nov-2018-

src/H03-May-2022-2,3601,567

tests/H03-May-2022-710568

.gitattributesH A D09-Nov-201842 32

.gitignoreH A D09-Nov-2018655 6862

.gitmodulesH A D09-Nov-201882 43

.travis.ymlH A D09-Nov-2018271 2416

LICENSE.mdH A D09-Nov-20181.1 KiB2219

Makefile.amH A D09-Nov-20182.2 KiB9060

README.mdH A D09-Nov-20181,017 3722

appveyor.ymlH A D09-Nov-20181.7 KiB9966

configure.acH A D09-Nov-20182.6 KiB11189

default.nixH A D09-Nov-2018995 4132

derivation.nixH A D09-Nov-20181 KiB3326

mustache.pc.inH A D09-Nov-2018253 1210

nix-shell.shH A D09-Nov-2018105 31

README.md

1# libmustache
2
3[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md)
4[![Build Status](https://travis-ci.org/jbboehr/libmustache.png?branch=master)](https://travis-ci.org/jbboehr/libmustache)
5[![Build status](https://ci.appveyor.com/api/projects/status/1bwyjyo1cel03b2r?svg=true)](https://ci.appveyor.com/project/jbboehr/libmustache)
6
7C++ implementation of [Mustache](https://mustache.github.com/) intended mainly for use as a [PHP extension](https://github.com/jbboehr/php-mustache).
8
9
10## Installation
11
12#### Linux/OSX
13
14You will need `autoconf`, `automake`, `make` and a C++ compiler.
15
16``` sh
17git clone git://github.com/jbboehr/libmustache.git --recursive
18cd libmustache
19autoreconf -fiv
20./configure
21make
22sudo make install
23```
24
25
26## Credits
27
28- [John Boehr](https://github.com/jbboehr)
29- [Adam Baratz](https://github.com/adambaratz)
30- [All Contributors](../../contributors)
31
32
33## License
34
35The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
36
37