mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
b9ae6cb0ea
You can parse any video file. If a parse error occurs, it will throw a ParseError exception. To see what data has been parsed, you can print the object. WWW: https://github.com/Diaoul/enzyme PR: 172889 Submitted by: William Grzybowski <william88@gmail.com> Feature safe: yes
21 lines
430 B
Makefile
21 lines
430 B
Makefile
# Created by: William Grzybowski <william88@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= enzyme
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= multimedia python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= william88@gmail.com
|
|
COMMENT= Python module to parse metadata in video files
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS=easy_install
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
|
|
|
|
.include <bsd.port.mk>
|