blob: d270d2781ea57b47150731c83526c27046f53dfd (
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
30
31
32
33
34
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
MY_P="gstreamer1-plugins-sndio-${PV}"
DESCRIPTION="Sndio audio sink and source for GStreamer"
HOMEPAGE="https://github.com/t6/gstreamer1-plugins-sndio"
SRC_URI="https://github.com/t6/gstreamer1-plugins-sndio/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
media-libs/gst-plugins-base:1.0
media-sound/sndio:=
"
RDEPEND="${DEPEND}"
src_compile() {
tc-export CC
default
}
src_install() {
export BSD_INSTALL_LIB="install -m 444"
default
}
|