aboutsummaryrefslogtreecommitdiff
path: root/dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2022-09-06 09:33:24 +0300
committerSyndamia <kamen@syndamia.com>2022-09-06 09:33:24 +0300
commitb495ea1b5a450c94c493049c4104be9e20896818 (patch)
tree2345d262878a782e6a01b5c6eecfa8f57dd1b09d /dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild
parent5b5ad2d0855ed1dc0e358c42d4f89563dd90ae2f (diff)
downloadgarbage-b495ea1b5a450c94c493049c4104be9e20896818.tar
garbage-b495ea1b5a450c94c493049c4104be9e20896818.tar.gz
garbage-b495ea1b5a450c94c493049c4104be9e20896818.zip
Removed a lot of the gentoo ebuild, following reconfiguration of my setup
Diffstat (limited to 'dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild')
-rw-r--r--dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild b/dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild
deleted file mode 100644
index 4ca983d..0000000
--- a/dev-cpp/gulrak-filesystem/gulrak-filesystem-1.5.10.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Header-only single-file std::filesystem compatible helper library"
-HOMEPAGE="https://github.com/gulrak/filesystem"
-SRC_URI="https://github.com/gulrak/filesystem/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/${P#*-}"
-
-src_configure() {
- local mycmakeargs=(
- -DGHC_FILESYSTEM_BUILD_EXAMPLES=OFF
- -DGHC_FILESYSTEM_BUILD_TESTING=$(usex test)
- -DGHC_FILESYSTEM_WITH_INSTALL=ON
- )
-
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- docinto examples
- use examples && dodoc examples/*.cpp
-}