mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
Closes: https://bugs.gentoo.org/802897 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
30 lines
625 B
Bash
30 lines
625 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
BOINC_SUBMODULE="zip"
|
|
inherit boinc
|
|
|
|
DESCRIPTION="Wrapper for the zip/unzip functions to expose to BOINC clients"
|
|
HOMEPAGE="https://boinc.berkeley.edu/trac/wiki/FileCompression"
|
|
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
LICENSE="Info-ZIP LGPL-3+"
|
|
SLOT="0"
|
|
|
|
# broken beyond repair
|
|
RESTRICT="test"
|
|
|
|
boinc_require_source ${PV}.0
|
|
boinc_enable_autotools
|
|
|
|
src_compile() {
|
|
emake lib${PN//-/_}.la
|
|
}
|
|
|
|
src_install() {
|
|
emake install-{libLTLIBRARIES,pkgincludeHEADERS} DESTDIR="${D}"
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|