Home
       dev-cpp/mustache: Add 4.1 - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 69bc1867181c9ce6fd7f3d857f05e71d4deed1f8
   DIR parent ca17913d4eecc263e4fd4db53f726c7160c21438
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Wed, 27 Sep 2023 23:11:13 +0200
       
       dev-cpp/mustache: Add 4.1
       
       Diffstat:
         A dev-cpp/mustache/Manifest           |       1 +
         A dev-cpp/mustache/mustache-4.1.ebuiā€¦ |      26 ++++++++++++++++++++++++++
       
       2 files changed, 27 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/dev-cpp/mustache/Manifest b/dev-cpp/mustache/Manifest
       @@ -0,0 +1 @@
       +DIST mustache-4.1.tar.gz 98905 BLAKE2B 1acf265ebc83881ac86c0db0a43c8a0984f2fc0bf70b4c946528e97a49feab7d1945272f3ed8e67087998db2594227776950319d5923cbd2aabafe672ed65ea3 SHA512 609c876fc085d1331355ec1f0396e588edf1fb3ea6765abcd06043cc5f7288f015d6bb7fdeb560df78aab54ae8d97e934375de577b944a09c9ae93f9915e7aff
   DIR diff --git a/dev-cpp/mustache/mustache-4.1.ebuild b/dev-cpp/mustache/mustache-4.1.ebuild
       @@ -0,0 +1,26 @@
       +EAPI=8
       +
       +DESCRIPTION="Mustache implementation for modern C++"
       +HOMEPAGE="https://github.com/kainjow/Mustache"
       +SRC_URI="https://github.com/kainjow/$PN/archive/v$PV.tar.gz -> $P.tar.gz"
       +S=$WORKDIR/Mustache-$PV
       +
       +LICENSE="Boost-1.0"
       +SLOT="0"
       +KEYWORDS="amd64"
       +IUSE=""
       +
       +RDEPEND=""
       +
       +DEPEND=""
       +
       +src_compile()
       +{
       +  echo -n >/dev/null
       +}
       +
       +src_install()
       +{
       +  insinto /usr/include
       +  doins $S/mustache.hpp
       +}