cpp2text-1.1.ebuild 544 B

1234567891011121314151617181920212223242526
  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
  5. DESCRIPTION="String representation converter (text, cpp, json)"
  6. HOMEPAGE="https://github.com/Ri0n/cpp2text"
  7. SRC_URI="https://github.com/Ri0n/cpp2text/archive/${PV}.tar.gz -> ${P}.tar.gz"
  8. LICENSE="Apache-2.0"
  9. SLOT="0"
  10. KEYWORDS="amd64 x86"
  11. IUSE=""
  12. DEPEND="dev-qt/qtgui:5"
  13. RDEPEND="${DEPEND}"
  14. src_configure() {
  15. eqmake5 PREFIX="${EPREFIX}/usr" ${PN}.pro
  16. }
  17. src_install() {
  18. emake INSTALL_ROOT="${D}" install
  19. }