mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
0d9b53ebad
- Update to 0.12.0 - fix the flags while here (they were not respected by the makefile anymore..) Changelog: https://github.com/crystal-lang/shards/releases/tag/v0.12.0 PR: 248266 Submitted by: Greg V (greg@unrelenting.technology)
34 lines
807 B
Makefile
34 lines
807 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= shards
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.12.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= Dependency manager for the Crystal programming language
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= crystal:lang/crystal
|
|
LIB_DEPENDS= libyaml.so:textproc/libyaml \
|
|
libpcre.so:devel/pcre \
|
|
libgc-threaded.so:devel/boehm-gc-threaded \
|
|
libevent.so:devel/libevent
|
|
RUN_DEPENDS= git:devel/git
|
|
|
|
USES= gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= crystal-lang
|
|
GH_TUPLE= crystal-lang:crystal-molinillo:e61b200edb735d5676e11cbe56e8353c8b2ced0b:molinillo/lib/molinillo
|
|
|
|
MAKE_ARGS+= CRYSTAL="${LOCALBASE}/bin/crystal" \
|
|
FLAGS="--release --no-debug" \
|
|
MANDIR="${STAGEDIR}${PREFIX}/man"
|
|
|
|
PLIST_FILES= bin/shards \
|
|
man/man1/shards.1.gz \
|
|
man/man5/shard.yml.5.gz
|
|
|
|
.include <bsd.port.mk>
|