29 lines
689 B
Makefile
29 lines
689 B
Makefile
# Created by: Andrew McNaughton <andrew@scoop.co.nz>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= MySQL-Diff
|
|
PORTVERSION= 0.48
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Perl module for comparing the table structure of two MySQL databases
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \
|
|
p5-DBD-mysql>=0:databases/p5-DBD-mysql \
|
|
p5-File-Slurp>=0:devel/p5-File-Slurp
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= configure
|
|
|
|
SHEBANG_FILES= bin/mysqldiff
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/mysqldiff ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|