mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
Changelog: https://github.com/kwilczynski/ruby-magic/blob/main/CHANGELOG.md 0.5.4 - 2022-01-28 Added Added a pessimistic version pin of rake-compiler and rake-compiler-dock versions in Gemfile. Changed Removed RubyGems version pin from the Gem gemspec file. Simplified the .gitlab-ci.yml used to run CI remotely on GitLab. Enabled verbose log when cross-compiling a native Ruby Gem using the rake-compiler-dock Gem. This allows for commands run to be shown. Deprecated Retired support for Ruby version 2.5 as it has reached End of Life (EOL).
23 lines
480 B
Makefile
23 lines
480 B
Makefile
# Created by: Matthias Fechner <mfechner@FreeBSD.org>
|
|
|
|
PORTNAME= ruby-magic
|
|
PORTVERSION= 0.5.4
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= mfechner@FreeBSD.org
|
|
COMMENT= File Magic in ruby
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= rubygem-mini_portile2>=2.6<3:devel/rubygem-mini_portile2
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
CONFIGURE_ARGS+= --use-system-libraries
|
|
|
|
post-install:
|
|
${RMDIR} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ports
|
|
|
|
.include <bsd.port.mk>
|