mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-06 03:20:43 +02:00
39 lines
1 KiB
Bash
39 lines
1 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: blshkv$
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils multilib git-2
|
|
|
|
DESCRIPTION="A lightweight multi-platform, multi-architecture disassembly framework"
|
|
HOMEPAGE="http://www.capstone-engine.org/"
|
|
#SRC_URI="https://github.com/aquynh/capstone/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
EGIT_REPO_URI="https://github.com/aquynh/capstone.git"
|
|
EGIT_BRANCH="next"
|
|
EGIT_COMMIT="aa791a2f48383d024bcfbae1542f5f2d05b27642"
|
|
|
|
#IUSE="python"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
|
|
#RDEPEND="python? ( >=dev-python/capstone-python-${PV} )"
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
#TODO: add java and ocaml bindings
|
|
|
|
src_prepare() {
|
|
#upstream bug: https://github.com/aquynh/capstone/issues/92
|
|
sed -i '/$(MAKE) -C tests/d' Makefile || die "sed failed"
|
|
sed -i '/$(INSTALL_DATA) lib$(LIBNAME).$(EXT) tests/d' Makefile || die "sed failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
dodir /usr/share/"${PN}"/
|
|
cp -R "${S}"/tests "${D}/usr/share/${PN}/" || die "Install failed!"
|
|
dodoc README
|
|
}
|