diff options
author | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2024-06-20 01:12:05 +0400 |
---|---|---|
committer | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2024-06-20 01:12:05 +0400 |
commit | 393e07c6b8b7eeda26b3960cfd355bfda631f6e1 (patch) | |
tree | bf36ac4071351d813c42f02ba557cbb6ed0d2579 /dev-cpp/mustache | |
parent | dev-python/jsonpath-rw: treeclean (diff) | |
download | guru-393e07c6b8b7eeda26b3960cfd355bfda631f6e1.tar.gz guru-393e07c6b8b7eeda26b3960cfd355bfda631f6e1.tar.bz2 guru-393e07c6b8b7eeda26b3960cfd355bfda631f6e1.zip |
dev-cpp/mustache: new package
Copy from https://data.gpo.zugaina.org/stefantalpalaru/dev-cpp/mustache
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Diffstat (limited to 'dev-cpp/mustache')
-rw-r--r-- | dev-cpp/mustache/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/mustache/metadata.xml | 11 | ||||
-rw-r--r-- | dev-cpp/mustache/mustache-4.1.ebuild | 22 |
3 files changed, 34 insertions, 0 deletions
diff --git a/dev-cpp/mustache/Manifest b/dev-cpp/mustache/Manifest new file mode 100644 index 000000000..5302e8881 --- /dev/null +++ b/dev-cpp/mustache/Manifest @@ -0,0 +1 @@ +DIST mustache-4.1.tar.gz 98905 BLAKE2B 1acf265ebc83881ac86c0db0a43c8a0984f2fc0bf70b4c946528e97a49feab7d1945272f3ed8e67087998db2594227776950319d5923cbd2aabafe672ed65ea3 SHA512 609c876fc085d1331355ec1f0396e588edf1fb3ea6765abcd06043cc5f7288f015d6bb7fdeb560df78aab54ae8d97e934375de577b944a09c9ae93f9915e7aff diff --git a/dev-cpp/mustache/metadata.xml b/dev-cpp/mustache/metadata.xml new file mode 100644 index 000000000..518822031 --- /dev/null +++ b/dev-cpp/mustache/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" proxied="yes"> + <email>zdanevich.vitaly@ya.ru</email> + <name>Vitaly Zdanevich</name> + </maintainer> + <upstream> + <remote-id type="github">nulloy/nulloy</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-cpp/mustache/mustache-4.1.ebuild b/dev-cpp/mustache/mustache-4.1.ebuild new file mode 100644 index 000000000..0f3d3ed2a --- /dev/null +++ b/dev-cpp/mustache/mustache-4.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +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" + +src_compile() { + : +} + +src_install() { + insinto /usr/include + doins mustache.hpp +} |