blob: f3f93b109e310c9970a4c06442fc4c20c3945929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Shim header for net/ppp_defs.h on musl"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Musl"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86"
RDEPEND="!sys-libs/glibc"
S=${WORKDIR}
src_install() {
insinto /usr/include/net
doins "${FILESDIR}/ppp_defs.h"
}
|