plog-1.1.9.ebuild 514 B

12345678910111213141516171819202122232425
  1. # Copyright 2023 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=8
  4. inherit cmake
  5. DESCRIPTION="Portable, simple and extensible C++ logging library"
  6. HOMEPAGE="https://github.com/SergiusTheBest/plog"
  7. SRC_URI="https://github.com/SergiusTheBest/plog/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
  8. LICENSE="MIT"
  9. SLOT="0"
  10. KEYWORDS="amd64 x86"
  11. DEPEND=""
  12. RDEPEND="${DEPEND}"
  13. BDEPEND=""
  14. src_configure() {
  15. local mycmakeargs=(
  16. -DPLOG_BUILD_SAMPLES=OFF
  17. )
  18. cmake_src_configure
  19. }