blob: 48a62736680d92c34cca15eedd78c3d1fd50a271 (
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
|
# New ports collection makefile for: lv2core
# Date created: 2008-11-20
# Whom: xaimus <xaimus@gmail.com>
#
# $FreeBSD$
#
PORTNAME= lv2core
PORTVERSION= 3.0
CATEGORIES= audio
MASTER_SITES= http://lv2plug.in/spec/
MAINTAINER= ports@FreeBSD.org
COMMENT= LV2 Core Package
USE_BZIP2= yes
USE_PYTHON_BUILD= yes
USE_GNOME= pkgconfig
do-configure:
cd ${WRKSRC} && ${SETENV} DESTDIR=${LOCALBASE} ./waf configure
do-build:
cd ${WRKSRC} && ./waf build
do-install:
cd ${WRKSRC} && ./waf install
.include <bsd.port.mk>
|