mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
89fb184017
py-adb is mainly targeted to users that need to communicate with Android devices in an automated fashion, such as in automated testing. It does not have a daemon between the client and the device, and therefore does not support multiple simultaneous commands to the same device. It does support any number of devices and never communicates with a device that it wasn't intended to, unlike the Android project's ADB. https://pypi.python.org/pypi/adb
23 lines
516 B
Makefile
23 lines
516 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= adb
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= Pure-python implementation of ADB and Fastboot protocols
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libusb1>0:devel/py-libusb1 \
|
|
${PYTHON_PKGNAMEPREFIX}gflags>0:devel/py-gflags \
|
|
${PYTHON_PKGNAMEPREFIX}m2crypto>0:security/py-m2crypto
|
|
|
|
NO_ARCH= yes
|
|
USES= python:-2.7
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|