1
0
Fork 0

media-libs/lsp-dsp-lib: new package, add 1.0.10

This commit is contained in:
Ryan Fox 2023-03-26 00:31:35 -07:00
parent d0fb8d3b4c
commit 44f0a42d78
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST lsp-common-lib-1.0.26.tar.gz 67839 BLAKE2B cd50d379915c1595e95d1254102b2e03aeec86a8b0ccdf6f1447c97eb5fea053e1a7ab012314db1c8048bcd7ca369e03309cfe4a978a5b023e04f0a9c74a51a9 SHA512 59954a658ced028ab04b513a7639a1e9c1612e70c4e6c2338e284799f8fd1d6337733d961910abaca792a196e432d7e6f77510dd60e34aef03c77bda689b5ad3
DIST lsp-dsp-lib-1.0.10.tar.gz 679510 BLAKE2B 98aaf1c00852305c41f70b85939e9c488533369c4f87110b487aa12283214325720c74956e0ebf45bb218f759eac2eb1428bd0c15b24299e3ea65998acbe4948 SHA512 9f05d8edd789caaddf873a0e7ad1c3839e69be5d5b023b792c1a1c5bf11834a51e7e882eb090f788a9e8aadd0e0ed05a05fbae198588bdfe34feba165207f20a
DIST lsp-test-fw-1.0.19.tar.gz 64267 BLAKE2B 199cdb6fb105d5b2edebb5335c59d9903fa7311af3d082d98059142ac7c74a4ce3c96d106fd905a5564dbb298793bef4b59e93d343342b31757a954ea80c0e54 SHA512 e40862221dc76e399e41bb2bd3d2f911bad807bd54b1a9057a3bc2d0f494c52fb10ea57985ca1d76a9a03b6079c24e52108087d4f9fd7cdf019b736cb50ea12f

View File

@ -0,0 +1,40 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CLV="1.0.26" # LSP_COMMON_LIB_VERSION
CLN="lsp-common-lib" # LSP_COMMON_LIB_NAME
CLP="${CLN}-${CLV}"
TFV="1.0.19" # LSP_TEST_FW_VERSION
TFN="lsp-test-fw" # LSP_TEST_FW_NAME
TFP="${TFN}-${TFV}"
SRC_URI="
https://github.com/lsp-plugins/lsp-dsp-lib/archive/${PV}.tar.gz -> ${P}.tar.gz
https://github.com/lsp-plugins/lsp-common-lib/archive/${CLV}.tar.gz -> ${CLP}.tar.gz
https://github.com/lsp-plugins/lsp-test-fw/archive/${TFV}.tar.gz -> ${TFP}.tar.gz
"
KEYWORDS="~amd64"
DESCRIPTION="Optimized DSP library"
HOMEPAGE="https://github.com/lsp-plugins/lsp-dsp-lib"
LICENSE="LGPL-3"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_unpack() {
default
mkdir "${S}/modules" || die
mv "${WORKDIR}/${CLP}" "${S}/modules/${CLN}" || die
mv "${WORKDIR}/${TFP}" "${S}/modules/${TFN}" || die
}
src_configure() {
emake config PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" TEST=$(usex test 1 0)
}

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>flewkey@2a03.party</email>
<name>Ryan Fox</name>
</maintainer>
<upstream>
<remote-id type="github">lsp-plugins/lsp-dsp-lib</remote-id>
</upstream>
</pkgmetadata>