mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
Copy from https://data.gpo.zugaina.org/stefantalpalaru/dev-cpp/mustache Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
23 lines
443 B
Bash
23 lines
443 B
Bash
# 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
|
|
}
|