blob: ab0fd6496bade76998e538ecd75f0054c6e6b450 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# New ports collection makefile for: ruby-eet
# Date created: 06 Apr 2006
# Whom: Alexander Botero-Lowry <alex@foxybanana.com>
#
# $FreeBSD$
PORTNAME= eet
PORTVERSION= 0.1.4
CATEGORIES= devel ruby
MASTER_SITES= ftp://ftp.code-monkey.de/pub/ruby-eet/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-eet-${PORTVERSION}
MAINTAINER= alexbl@FreeBSD.org
COMMENT= Ruby support for reading and writing EET files
BUILD_DEPENDS= ${LOCALBASE}/bin/rake:${PORTSDIR}/devel/rubygem-rake
LIB_DEPENDS= eet.9:${PORTSDIR}/devel/eet
USE_RUBY= yes
.include <bsd.port.pre.mk>
do-build:
@cd ${WRKSRC} && ${LOCALBASE}/bin/rake PREFIX=${PREFIX}/
do-install:
@cd ${WRKSRC} && ${LOCALBASE}/bin/rake PREFIX=${PREFIX}/ install
.include <bsd.port.post.mk>
|