19 lines
693 B
Makefile
19 lines
693 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="4.0.0"
|
|
PKG_SHA256="6ee77e9fe220e2d3e3b1f53cfea04fb319828cc7dbb97dd9df09e46e901d797d"
|
|
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"
|
|
}
|