From owner-svn-ports-all@freebsd.org Mon Feb 22 22:38:43 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2E6AC551C39; Mon, 22 Feb 2021 22:38:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DkxtC0MPsz4tYc; Mon, 22 Feb 2021 22:38:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EF5436102; Mon, 22 Feb 2021 22:38:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11MMcgTl086248; Mon, 22 Feb 2021 22:38:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11MMcgWE086244; Mon, 22 Feb 2021 22:38:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202102222238.11MMcgWE086244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 22 Feb 2021 22:38:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566342 - in head/audio: . miniaudio X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . miniaudio X-SVN-Commit-Revision: 566342 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2021 22:38:43 -0000 Author: yuri Date: Mon Feb 22 22:38:41 2021 New Revision: 566342 URL: https://svnweb.freebsd.org/changeset/ports/566342 Log: New port: audio/miniaudio: C single header audio playback and capture librar Added: head/audio/miniaudio/ head/audio/miniaudio/Makefile (contents, props changed) head/audio/miniaudio/distinfo (contents, props changed) head/audio/miniaudio/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon Feb 22 22:31:17 2021 (r566341) +++ head/audio/Makefile Mon Feb 22 22:38:41 2021 (r566342) @@ -468,6 +468,7 @@ SUBDIR += midipp SUBDIR += mikmod SUBDIR += milkytracker + SUBDIR += miniaudio SUBDIR += minimp3 SUBDIR += mio2jack SUBDIR += mixer.app Added: head/audio/miniaudio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/miniaudio/Makefile Mon Feb 22 22:38:41 2021 (r566342) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= miniaudio +PORTVERSION= 0.10.31 +CATEGORIES= audio devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C single header audio playback and capture library + +LICENSE= PD MIT +LICENSE_COMB= dual + +USE_GITHUB= yes +GH_ACCOUNT= mackron +GH_TAGNAME= 53512c3 + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/miniaudio.h + +do-install: + ${INSTALL_DATA} ${WRKSRC}/miniaudio.h ${STAGEDIR}${PREFIX}/include + +.include Added: head/audio/miniaudio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/miniaudio/distinfo Mon Feb 22 22:38:41 2021 (r566342) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614033117 +SHA256 (mackron-miniaudio-0.10.31-53512c3_GH0.tar.gz) = 91c5412e6435602b7b029c9f5711c9f030964ddb576df877d3f728507a60a057 +SIZE (mackron-miniaudio-0.10.31-53512c3_GH0.tar.gz) = 1297392 Added: head/audio/miniaudio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/miniaudio/pkg-descr Mon Feb 22 22:38:41 2021 (r566342) @@ -0,0 +1,5 @@ +miniaudio is a single file audio playback and capture library written in C. +Written from scratch, it has no external dependencies with the exception of +the C standard library and necessary platform-specific backends. + +WWW: https://miniaud.io/