f71e49b5cb
Fixes a couple of edge-case bugs in the mapping of pieces to mmap'd files on-disk. This makes multi-file torrent downloads more reliable. From maintainer Niall O'Higgins
33 lines
702 B
Makefile
33 lines
702 B
Makefile
# $OpenBSD: Makefile,v 1.6 2008/10/02 07:58:50 sthen Exp $
|
|
|
|
COMMENT= simple BitTorrent implementation
|
|
|
|
DISTNAME= unworkable-0.51
|
|
PKGNAME= ${DISTNAME}v0
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://p2presearch.com/unworkable
|
|
|
|
MAINTAINER= Niall O Higgins <niallo@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://p2presearch.com/unworkable/dist/
|
|
|
|
WRKDIST= ${WRKDIR}/unworkable
|
|
WANTLIB= c crypto event
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
MAKE_FILE= BSDmakefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/unworkable ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/unworkable.cat1 ${PREFIX}/man/man1/unworkable.0
|
|
|
|
.include <bsd.port.mk>
|