blob: 0d18ae5321477341625fb140404745bec78d4271 (
plain) (
blame)
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 2016 Adélie Linux Team
# Distributed under the terms of the NCSA License
EAPI=6
inherit autotools
DESCRIPTION="A standalone library to implement GNU libc's obstack"
HOMEPAGE="https://github.com/pullmoll/musl-obstack"
SRC_URI="https://github.com/pullmoll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="arm mips ppc ppc64 x86 x86_64"
IUSE=""
DEPEND="!sys-libs/glibc"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS COPYING NEWS README )
src_prepare() {
default
eautoreconf
}
|