mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 18:36:28 -04:00
Simple Python lib to get wmi data classes in a dict. The script wmi_query make a query and print on the screen the wmi class object. Both keys and values will be printed for each object returned by the query. WWW: https://github.com/kanazux/wmi-query PR: 222451 Submitted by: Silvio Ap Silva <alvolivre@live.com>
22 lines
496 B
Makefile
22 lines
496 B
Makefile
# Created by: Silvio Ap Silva aka kanazuchi <alvolivre@live.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmi-query
|
|
PORTVERSION= 0.1.3
|
|
CATEGORIES= net python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= alvolivre@live.com
|
|
COMMENT= Python scripts to get wmi data classes in a dict
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}impacket>=0:net/py-impacket
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|