26 lines
628 B
Bash
Executable File
26 lines
628 B
Bash
Executable File
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="AT commands as input are sent to modem and responses given as output"
|
|
HOMEPAGE="http://atinout.sourceforge.net/index.html"
|
|
SRC_URI="https://netix.dl.sourceforge.net/project/atinout/v0.9.1/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/0001-make-gcc-happy-by-adding-fallthrough-comment.patch
|
|
"${FILESDIR}"/0002-do-not-rely-on-CR-in-modem-output.patch
|
|
"${FILESDIR}"/0003-patch-makefile.patch
|
|
)
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake
|
|
}
|