added stdman

This commit is contained in:
Florian Schroegendorfer 2019-09-20 19:53:12 +02:00
parent 709a4a0d08
commit b116463c0e
3 changed files with 28 additions and 0 deletions

1
dev-cpp/stdman/Manifest Normal file
View File

@ -0,0 +1 @@
DIST 2018.03.11.tar.gz 3145850 BLAKE2B 6ba1893e76b1223d03cab9945050aafcb8d94b554e58269086d5af588ce6431b83ba530c2ee4451b2aa4bc89424fb6f57b27510e7d48a22ee54d3d9328e49d9c SHA512 597117d1b3b101dae9e3aa600751fac73dd43b565d007beb939be29c3e4bce5b4715bb24bdce93f2547dd77a04f648cde69054591b791b6543ac074d88975987

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>florian.schroegendorfer@phlo.at</email>
</maintainer>
<longdescription lang="en">
Automatically generate C++ man pages from cppreference.com
</longdescription>
</pkgmetadata>

View File

@ -0,0 +1,17 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Automatically generate C++ man pages from cppreference.com"
HOMEPAGE="https://github.com/jeaye/stdman"
SRC_URI="https://github.com/jeaye/stdman/archive/${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
src_prepare() {
default
sed -i '/gzip/d' do_install
}