blob: 9757a935ed392af11510e5f7236ae6030340dd75 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit mono-env
DESCRIPTION="GUDEV API C# binding"
HOMEPAGE="https://github.com/mono/gudev-sharp"
SRC_URI="https://github.com/mono/${PN}/releases/download/3.0.0/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-dotnet/gtk-sharp:3
dev-libs/libgudev
virtual/udev"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS
}
|