mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
34 lines
665 B
Makefile
34 lines
665 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ext4fuse
|
|
PORTVERSION= 0.1.3
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= EXT4 implementation for FUSE
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo
|
|
|
|
USES= fuse pkgconfig gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gerard
|
|
GH_COMMIT= 33f57f6
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
|
|
# explicitly empty to fix a cross compiling related issue (PR: 165480)
|
|
MAKE_ENV+= TARGET_ARCH=
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/ext4fuse
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|