gentoo/dev-util/maxcso/maxcso-1.13.0.ebuild
Michał Górny 6a3644bf2f
*/*: Add := to virtual/zlib deps, part 1
Done via:

```
git grep -l virtual/zlib$ | xargs sed -i -e 's@virtual/zlib$@&:=@'
```

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 10:36:27 +01:00

39 lines
829 B
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Fast cso compressor"
HOMEPAGE="https://github.com/unknownbrackets/maxcso"
if [[ "${PV}" == *9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/unknownbrackets/maxcso.git"
else
SRC_URI="https://github.com/unknownbrackets/maxcso/archive/v${PV}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="ISC MIT LGPL-2.1+ Apache-2.0"
SLOT="0"
BDEPEND="virtual/pkgconfig"
RDEPEND="
app-arch/lz4
dev-libs/libuv
virtual/zlib:=
"
DEPEND="${RDEPEND}"
PATCHES=("${FILESDIR}/${P}-ldflags.patch")
src_compile() {
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
dodoc README.md README_CSO.md README_ZSO.md
}