-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/libdjinterop: bump to 0.21.0
- Loading branch information
1 parent
3c49d41
commit ff398d4
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST libdjinterop-0.20.2.tar.gz 2463629 BLAKE2B 47c2b778d3ecdd07e0af5a37c7f63dd73f0c3b58c99f4127a0a7dbc99fd67154af2b55211c11e0e4e634f1adc4230ab4ea5ed9587bbd6cf20ea937698454007b SHA512 591cbf8102e16b11337ec25ad90ef035bf65dbbd18591802d959044874f36bb61bce3d5db974b00ecee14b45c7ea2488542b226d823d9087c92a0b452d804ff3 | ||
DIST libdjinterop-0.21.0.tar.gz 2465629 BLAKE2B b360f290ac4d074003fdb02bd4080d6178b9d34e14f0d95d2c0e8aa5880ea20f71fd80c6d272a605d55a356b2c62fc1cf073e3462d50a5d50e229141a8d10796 SHA512 c2784ffc6b0ddc9ad92a227621bb00cd1c88aa8f8abe82401774102f9be16dfbe9f0745523d517594faecba60b650a53613c7867afe57e6bcd8a2cc6288dd9ff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit cmake | ||
|
||
DESCRIPTION="C++ library for DJ record libraries" | ||
HOMEPAGE="https://github.com/xsco/libdjinterop" | ||
SRC_URI="https://github.com/xsco/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="LGPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~x86" | ||
|
||
IUSE="test" | ||
|
||
DEPEND=" | ||
dev-db/sqlite | ||
sys-libs/zlib | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND=" | ||
${DEPEND} | ||
test? ( dev-libs/boost ) | ||
" | ||
|
||
RESTRICT="!test? ( test )" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DCMAKE_SKIP_BUILD_RPATH=ON | ||
-Wno-dev | ||
) | ||
cmake_src_configure | ||
} |