fb94e060a6
- Call mkfifo instead of mknod for creating FIFOs to fix cramfsck. PR: 116292 Submitted by: Christopher Hall <freebsd@generalresources.com> Approved by: maintainer
27 lines
547 B
Makefile
27 lines
547 B
Makefile
# New ports collection makefile for: cramfs
|
|
# Date created: 2006-11-29
|
|
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cramfs
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SOURCEFORGE
|
|
MASTER_SITE_SUBDIR= cramfs
|
|
|
|
MAINTAINER= gslin@gslin.org
|
|
COMMENT= The compressed ROM filesystem
|
|
|
|
MAKEFILE= GNUmakefile
|
|
USE_GMAKE= yes
|
|
|
|
PLIST_FILES= sbin/cramfsck sbin/mkcramfs
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cramfsck ${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mkcramfs ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|