18 lines
619 B
Makefile
18 lines
619 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libnfs"
|
|
PKG_VERSION="5.0.2"
|
|
PKG_LICENSE="LGPL2.1+"
|
|
PKG_SITE="https://github.com/sahlberg/libnfs"
|
|
PKG_URL="https://github.com/sahlberg/libnfs/archive/libnfs-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A client library for accessing NFS shares over a network."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-examples"
|
|
|
|
pre_configure_target() {
|
|
export CFLAGS="${CFLAGS} -D_FILE_OFFSET_BITS=64"
|
|
}
|