diff options
Diffstat (limited to 'filesystems/cramfs/Makefile')
-rw-r--r-- | filesystems/cramfs/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/filesystems/cramfs/Makefile b/filesystems/cramfs/Makefile new file mode 100644 index 000000000000..7faf71c22319 --- /dev/null +++ b/filesystems/cramfs/Makefile @@ -0,0 +1,30 @@ +PORTNAME= cramfs +PORTVERSION= 1.1 +PORTREVISION= 1 +CATEGORIES= filesystems sysutils +MASTER_SITES= SF + +MAINTAINER= portmaster@BSDforge.com +COMMENT= Linux Compressed ROM FileSystem +WWW= https://sourceforge.net/projects/cramfs/ + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gmake + +MAKEFILE= GNUmakefile + +PLIST_FILES= sbin/cramfsck sbin/mkcramfs + +.include <bsd.port.options.mk> + +.if ${OPSYS} == FreeBSD +CFLAGS+= -Wno-error=incompatible-function-pointer-types +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/cramfsck ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/mkcramfs ${STAGEDIR}${PREFIX}/sbin + +.include <bsd.port.mk> |