mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
25 lines
724 B
Makefile
25 lines
724 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="ccid"
|
|
PKG_VERSION="1.6.1"
|
|
PKG_SHA256="2eca8fb07e8fe7c0d39daeaca7b97cd73c40ed9b72738a24ad3dcbdfc918e1ea"
|
|
PKG_LICENSE="LGPL"
|
|
PKG_SITE="https://ccid.apdu.fr"
|
|
PKG_URL="https://ccid.apdu.fr/files/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain pcsc-lite"
|
|
PKG_LONGDESC="A generic USB Chip/Smart Card Interface Devices driver."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static --enable-twinserial"
|
|
|
|
post_configure_target() {
|
|
libtool_remove_rpath libtool
|
|
}
|
|
|
|
make_target() {
|
|
make
|
|
make -C src/ Info.plist
|
|
}
|