blob: 6367f209c5c1266d8ade3f8955a44abd51dcc9b4 (
plain)
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
|
# $NetBSD: Makefile,v 1.1 2014/07/21 07:30:50 dbj Exp $
#
DISTNAME= codec2-0.3.0.1698
WRKSRC= ${WRKDIR}/codec2
CATEGORIES= ham
# svn://svn.code.sf.net/p/freetel/code/codec2-dev
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tgz
MAINTAINER= dbj@NetBSD.org
HOMEPAGE= http://rowetel.com/codec2.html
COMMENT= Speech codec for 2400 bit/s and below
LICENSE= gnu-lgpl-v2.1
# This package doesn't really use c++, but cmake probes for it
# causing the configure to fail unless we declare it here. Maybe
# there is a way to tell cmake to not require c++
USE_LANGUAGES= c c++
USE_CMAKE=yes
CONFIGURE_DIRS=build
CMAKE_ARG_PATH=..
pre-configure:
cd ${WRKSRC} && mkdir build
.include "../../mk/bsd.pkg.mk"
|