blob: da8c9267c82c7f165dd1753d22808ab6b6119e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Base64 encoding/decoding library for C"
HOMEPAGE="https://gitlab.nic.cz/turris/base64c/-/tree/master"
SRC_URI="https://gitlab.nic.cz/turris/base64c/-/archive/v${PV}/base64c-v${PV}.tar.gz"
S="${WORKDIR}/base64c-v${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_configure() {
./bootstrap
econf \
--disable-tests \
--disable-valgrind \
--disable-linters
}
|