mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
f7acb6707d
assist you with your MySQL configuration and make recommendations for increased performance and stability. Within seconds, it will display statistics about your MySQL installation and the areas where it can be improved. WWW: http://wiki.mysqltuner.com/MySQLTuner PR: ports/127237 Submitted by: Wen heping <wenheping at gmail.com>
32 lines
735 B
Makefile
32 lines
735 B
Makefile
# New ports collection makefile for: mysqltuner
|
|
# Date created: 09 September 2008
|
|
# Whom: Wen heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysqltuner
|
|
PORTVERSION= 0.9.9
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://mysqltuner.com/releases/
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}.pl
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= A Script Assist You with MySQL Configuration
|
|
|
|
USE_PERL= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}.pl
|
|
|
|
.include <bsd.port.pre.mk>
|
|
do-install:
|
|
@${CP} ${DISTDIR}/${PORTNAME}-${PORTVERSION}.pl \
|
|
${PREFIX}/bin/${PORTNAME}.pl
|
|
@${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}.pl
|
|
@${ECHO_CMD} '@exec ${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}.pl' \
|
|
>> ${TMPPLIST}
|
|
|
|
.include <bsd.port.post.mk>
|