a8e3d11475
* Add PC/handheld device to separate X86_64 for other purposes. * Move emulation packages into device options. * Add Docker packages for future use thanks to @CoreELEC.
35 lines
1.5 KiB
Makefile
35 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2017 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="heimdal"
|
|
PKG_VERSION="c0bc8beb07d9733d4c8c17d120916552fe172f50"
|
|
PKG_SHA256="601e9a772063c72b391d593df8ae5e05ec779fefdf1502b7d88fbbe016ceb4dd"
|
|
PKG_LICENSE="BSD-3c"
|
|
PKG_SITE="http://www.h5l.org/"
|
|
PKG_URL="https://github.com/heimdal/heimdal/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="toolchain:host Python3:host ncurses:host asn1c:host"
|
|
PKG_LONGDESC="Kerberos 5, PKIX, CMS, GSS-API, SPNEGO, NTLM, Digest-MD5 and, SASL implementation."
|
|
PKG_TOOLCHAIN="autotools"
|
|
PKG_BUILD_FLAGS="-parallel"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="ac_cv_prog_COMPILE_ET=no \
|
|
--enable-static --disable-shared \
|
|
--without-openldap \
|
|
--without-capng \
|
|
--without-sqlite3 \
|
|
--without-libintl \
|
|
--without-openssl \
|
|
--without-berkeley-db \
|
|
--without-readline \
|
|
--without-libedit \
|
|
--without-hesiod \
|
|
--without-x \
|
|
--disable-otp \
|
|
--disable-heimdal-documentation"
|
|
|
|
makeinstall_host() {
|
|
mkdir -p ${TOOLCHAIN}/bin
|
|
cp -PR lib/asn1/asn1_compile ${TOOLCHAIN}/bin/heimdal_asn1_compile
|
|
cp -PR lib/com_err/compile_et ${TOOLCHAIN}/bin/heimdal_compile_et
|
|
}
|