27 lines
523 B
Bash
27 lines
523 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit autotools git-r3
|
|
|
|
REV="master"
|
|
DESCRIPTION="A DevTools proxy for iOS devices"
|
|
HOMEPAGE="https://github.com/google/ios-webkit-debug-proxy"
|
|
EGIT_REPO_URI="git://github.com/google/${PN}.git"
|
|
|
|
LICENSE="BSD"
|
|
KEYWORDS=""
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
>=app-pda/libimobiledevice-1.2.1_pre
|
|
>=app-pda/usbmuxd-1.1.1_pre
|
|
app-pda/libplist
|
|
app-pda/libusbmuxd"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare(){
|
|
default
|
|
eautoreconf
|
|
}
|