blob: 47af62190af38d3b62112750e39267666236f36d (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="METAR Decoder Software Package Library"
HOMEPAGE="http://limulus.net/mdsplib/"
SRC_URI="http://limulus.net/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_configure() {
tc-export AR CC RANLIB
}
src_compile() {
emake all
}
src_install() {
dobin dmetar
doheader metar.h
dolib.a libmetar.a
einstalldocs
}
|