1e443545d0
COMMENT should not begin with 'A' or 'An' Maintainers were notified and given time to object.
43 lines
902 B
Makefile
43 lines
902 B
Makefile
# Created by: Udo Schweigert
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jigdo
|
|
PORTVERSION= 0.7.3
|
|
#PORTREVISION?= 0
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= http://atterer.net/jigdo/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= jigdo-bin-${PORTVERSION}
|
|
|
|
MAINTAINER= udo.schweigert@siemens.com
|
|
COMMENT= Tool designed to ease the distribution of large files
|
|
|
|
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USE_BZIP2= YES
|
|
USE_LINUX= yes
|
|
NO_BUILD= yes
|
|
|
|
PROGRAMS= jigdo-file
|
|
SCRIPTS= jigdo-lite jigdo-mirror
|
|
|
|
MAN1= jigdo-file.1 jigdo-lite.1 jigdo-mirror.1
|
|
|
|
NO_STAGE= yes
|
|
pre-install:
|
|
@${BRANDELF} -t Linux ${WRKSRC}/jigdo-file
|
|
|
|
do-install:
|
|
.for i in ${PROGRAMS}
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/$i ${PREFIX}/bin
|
|
.endfor
|
|
.for i in ${SCRIPTS}
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/$i ${PREFIX}/bin
|
|
.endfor
|
|
.for i in ${PROGRAMS} ${SCRIPTS}
|
|
@${INSTALL_MAN} ${WRKSRC}/$i.1 ${PREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|