cpp2text-9999.ebuild 492 B

123456789101112131415161718192021222324
  1. # Copyright 1999-2021 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=8
  4. inherit qmake-utils git-r3
  5. DESCRIPTION="String representation converter (text, cpp, json)"
  6. HOMEPAGE="https://github.com/Ri0n/cpp2text"
  7. EGIT_REPO_URI="https://github.com/Ri0n/cpp2text"
  8. LICENSE="Apache-2.0"
  9. SLOT="0"
  10. DEPEND="dev-qt/qtgui:5"
  11. RDEPEND="${DEPEND}"
  12. src_configure() {
  13. eqmake5 PREFIX="${EPREFIX}/usr" ${PN}.pro
  14. }
  15. src_install() {
  16. emake INSTALL_ROOT="${D}" install
  17. }