mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
26 lines
544 B
Bash
26 lines
544 B
Bash
# Copyright 2019-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Cross-platform library for building Telegram clients"
|
|
HOMEPAGE="https://core.telegram.org/tdlib"
|
|
SRC_URI="https://github.com/tdlib/td/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSL-1.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~x86"
|
|
|
|
DEPEND="sys-devel/gcc
|
|
dev-libs/openssl
|
|
sys-libs/zlib
|
|
dev-util/gperf
|
|
dev-util/cmake
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
PATCHES=( "${FILESDIR}/${P}-multilib.patch" )
|
|
|
|
S="${WORKDIR}/td-${PV}"
|