689c3e98c7
AtomicParsley is a lightweight command line program for reading, parsing and setting metadata into MPEG-4 files supporting these styles of metadata: * iTunes-style metadata into .mp4, .m4a, .m4p, .m4v, .m4b files * 3gp-style assets (3GPP TS 26.444 version 6.4.0 Release 6 specification conforming) in 3GPP, 3GPP2, MobileMP4 & derivatives * ISO copyright notices at movie & track level for MPEG-4 & derivatives * uuid private user extension text & file embedding for MPEG-4 & derivatives
31 lines
629 B
Makefile
31 lines
629 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/11/06 14:29:14 sthen Exp $
|
|
|
|
COMMENT= read and set MPEG-4/3GPP metadata tags
|
|
|
|
DISTNAME= AtomicParsley-source-0.9.0
|
|
EXTRACT_SUFX= .zip
|
|
PKGNAME= ${DISTNAME:L:S/-source//}
|
|
|
|
CATEGORIES= multimedia
|
|
|
|
HOMEPAGE= http://atomicparsley.sourceforge.net/
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2 "or its successor"
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c m stdc++
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=atomicparsley/}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-configure:
|
|
cp ${FILESDIR}/Makefile ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|