1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/sysutils/exfat-utils/Makefile
Martin Wilke c071a01d58 Utilities to manage extended file allocation table filesystem. This package
provides tools to create, check and label the filesystem.
It contains dumpexfat to dump properties of the filesystem, exfatfsck to report
errors found on a exFAT filesystem, exfatlabel to label a exFAT filesystem and
mkexfatfs to create a exFAT filesystem.

WWW: http://code.google.com/p/exfat/

PR:		ports/165857
ubmitted by:	Alex Samorukov <samm@os2.kiev.ua>
2012-04-11 03:39:18 +00:00

41 lines
1.2 KiB
Makefile

# New ports collection makefile for: exfat-utils
# Date created: 2012-01-25
# Whom: Alex Samorukov <samm@os2.kiev.ua>
#
# $FreeBSD$
#
PORTNAME= exfat-utils
PORTVERSION= 0.9.7
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= samm@os2.kiev.ua
COMMENT= Utilities to create, check, label and dump exFAT filesystem
LICENSE= GPLv3
LIB_DEPENDS= ublio.1:${PORTSDIR}/devel/libublio
PROJECTHOST= exfat
USE_SCONS= yes
MAN8= exfatlabel.8 mkexfatfs.8 dumpexfat.8 exfatfsck.8
PLIST_FILES= sbin/exfatlabel sbin/dumpexfat sbin/exfatfsck sbin/mkexfatfs
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/label/exfatlabel ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/dump/dumpexfat ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/fsck/exfatfsck ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/mkfs/mkexfatfs ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/label/exfatlabel.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/mkfs/mkexfatfs.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/dump/dumpexfat.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/fsck/exfatfsck.8 ${MAN8PREFIX}/man/man8
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' ${WRKSRC}/SConstruct
.include <bsd.port.mk>