mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Changelog: https://github.com/curl/wcurl/blob/v2025.04.20/CHANGELOG.md Reported by: portscout
32 lines
654 B
Makefile
32 lines
654 B
Makefile
PORTNAME= wcurl
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2025.04.20
|
|
CATEGORIES= ftp net www
|
|
|
|
MAINTAINER= tagattie@FreeBSD.org
|
|
COMMENT= Simple wrapper around curl to easily download files
|
|
WWW= https://curl.se/wcurl/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= curl>=7.46.0:ftp/curl
|
|
TEST_DEPENDS= shunit2:devel/shunit2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= curl
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/wcurl \
|
|
share/man/man1/wcurl.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/wcurl ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/wcurl.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ./tests/tests.sh
|
|
|
|
.include <bsd.port.mk>
|