svn commit: r522202 - in head/audio: . libaudec libaudec/files
Yuri Victorovich
yuri at FreeBSD.org
Mon Jan 6 04:51:43 UTC 2020
Author: yuri
Date: Mon Jan 6 04:51:41 2020
New Revision: 522202
URL: https://svnweb.freebsd.org/changeset/ports/522202
Log:
New port: audio/libaudec: Wrapper library over ffmpeg, sndfile and libsamplerate
Added:
head/audio/libaudec/
head/audio/libaudec/Makefile (contents, props changed)
head/audio/libaudec/distinfo (contents, props changed)
head/audio/libaudec/files/
head/audio/libaudec/files/patch-meson.build (contents, props changed)
head/audio/libaudec/pkg-descr (contents, props changed)
Modified:
head/audio/Makefile
Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile Mon Jan 6 04:37:36 2020 (r522201)
+++ head/audio/Makefile Mon Jan 6 04:51:41 2020 (r522202)
@@ -372,6 +372,7 @@
SUBDIR += libamrnb
SUBDIR += libamrwb
SUBDIR += libao
+ SUBDIR += libaudec
SUBDIR += libaudiofile
SUBDIR += libbpm
SUBDIR += libbs2b
Added: head/audio/libaudec/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/libaudec/Makefile Mon Jan 6 04:51:41 2020 (r522202)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= libaudec
+DISTVERSIONPREFIX= v
+DISTVERSION= 0.1
+CATEGORIES= audio devel
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Wrapper library over ffmpeg, sndfile and libsamplerate
+
+LICENSE= AGPLv3
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+LIB_DEPENDS= libsamplerate.so:audio/libsamplerate \
+ libsndfile.so:audio/libsndfile
+
+USES= compiler:c11 meson pkgconfig
+USE_GITHUB= yes
+GH_ACCOUNT= alex-tee
+USE_LDCONFIG= yes
+
+PLIST_FILES= include/audec/audec.h \
+ lib/libaudec.so \
+ libdata/pkgconfig/audec.pc
+
+.include <bsd.port.mk>
Added: head/audio/libaudec/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/libaudec/distinfo Mon Jan 6 04:51:41 2020 (r522202)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578285717
+SHA256 (alex-tee-libaudec-v0.1_GH0.tar.gz) = 5a001391ce208a1abaf21064e4069418919e175258a23c3c748fad22ae42fd0a
+SIZE (alex-tee-libaudec-v0.1_GH0.tar.gz) = 75019
Added: head/audio/libaudec/files/patch-meson.build
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/libaudec/files/patch-meson.build Mon Jan 6 04:51:41 2020 (r522202)
@@ -0,0 +1,11 @@
+--- meson.build.orig 2020-01-06 04:43:34 UTC
++++ meson.build
+@@ -160,7 +160,7 @@ config_h_dep = declare_dependency (
+ )
+ audec_deps += config_h_dep
+
+-audec = static_library (
++audec = shared_library (
+ 'audec',
+ sources: srcs,
+ dependencies: [
Added: head/audio/libaudec/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/libaudec/pkg-descr Mon Jan 6 04:51:41 2020 (r522202)
@@ -0,0 +1,5 @@
+libaudec (lib audio decoder) is a wrapper library over ffmpeg, sndfile and
+libsamplerate for reading and resampling audio files, based on Robin Gareus'
+audio_decoder code (https://github.com/x42/silan/tree/master/audio_decoder).
+
+WWW: https://github.com/alex-tee/libaudec
More information about the svn-ports-all
mailing list