mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
ba79bd1731
Reviewed by: tabthorpe Approved by: portmgr (bapt), core
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# Created by: Alex Samorukov <samm@os2.kiev.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= exfat
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= fusefs-
|
|
DISTNAME= fuse-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= Full-featured exFAT FS implementation as a FUSE module
|
|
|
|
LICENSE= Microsoft-exFAT
|
|
LICENSE_NAME= Microsoft exFAT License
|
|
LICENSE_TEXT= Requires license from Microsoft, please see \
|
|
http://www.microsoft.com/en-us/legal/intellectualproperty/IPLicensing/Programs/exFATFileSystem.aspx
|
|
LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell
|
|
|
|
LIB_DEPENDS= ublio:${PORTSDIR}/devel/libublio
|
|
|
|
USES= fuse iconv
|
|
USE_SCONS= yes
|
|
|
|
MAN8= mount.exfat-fuse.8
|
|
PLIST_FILES= bin/mount.exfat-fuse bin/mount.exfat
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fuse/mount.exfat-fuse ${PREFIX}/bin
|
|
${LN} -s ${PREFIX}/bin/mount.exfat-fuse ${PREFIX}/bin/mount.exfat
|
|
${INSTALL_MAN} ${WRKSRC}/fuse/${MAN8} ${MAN8PREFIX}/man/man8
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' ${WRKSRC}/SConstruct
|
|
|
|
.include <bsd.port.mk>
|