freebsd-ports/biology/fastool/Makefile
Mathieu Arnold d83ff1e42e Never set WRKSRC when using USE_GITHUB.
If you want to set WRKSRC, set GH_PROJECT instead.
- The GitHub URLs are case insensitive, but the distribution files you
  get out of them are not.
- If the repository was renamed, the old URL will still work, but the
  distribution name will be ith the new name.

Sponsored by:	Absolight
2017-01-03 18:12:13 +00:00

31 lines
570 B
Makefile

# Created by: Jason Bacon <bacon4000@gmail.com>
# $FreeBSD$
PORTNAME= fastool
PORTVERSION= 0.1.4
CATEGORIES= biology
MAINTAINER= bacon4000@gmail.com
COMMENT= Simple and quick FastQ and FastA tool for file reading and conversion
LICENSE= BSD2CLAUSE
USE_GITHUB= yes
GH_ACCOUNT= fstrozzi
GH_PROJECT= Fastool
PLIST_FILES= bin/fastool
CFLAGS+= -std=c99
post-patch:
${REINPLACE_CMD} \
-e 's|CC *=|CC ?=|g' \
-e 's|CFLAGS *=|CFLAGS ?=|g' \
${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fastool \
${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>