0f311a05e5
and produces ed2k:// links for files
28 lines
672 B
Makefile
28 lines
672 B
Makefile
# New ports collection makefile for: edonkey hash tool
|
|
# Date created: Wed Feb 20 18:03:49 BRT 2002
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= edonkey
|
|
PORTVERSION= 0.0.1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://users.aber.ac.uk/tpm01/ed2k_tools/
|
|
PKGNAMESUFFIX= -tool-hash
|
|
DISTNAME= ed2k_hash
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
|
|
# I could have written a Makefile but I would rather
|
|
# not waste inodes
|
|
do-build:
|
|
@cd ${WRKSRC} && ${CC} -D__linux ${CFLAGS} ${LDFLAGS} -lmd \
|
|
ed2k_hash.c -o ${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}${PKGNAMESUFFIX} \
|
|
${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|