mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-29 11:32:30 +00:00
* Ran convert-overrides.py to generate the initial changes * Manual cleanup afterwards (which was a lot, due to our extensive use of overrides). Signed-off-by: Matt Madison <matt@madison.systems>
30 lines
1.0 KiB
BlitzBasic
30 lines
1.0 KiB
BlitzBasic
SUMMARY = "Transport-Independent RPC library"
|
|
DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux"
|
|
SECTION = "libs/network"
|
|
HOMEPAGE = "http://sourceforge.net/projects/libtirpc/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \
|
|
file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/libtirpc/libtirpc-${PV}.tar.bz2"
|
|
SRC_URI[sha256sum] = "4278e9a5181d5af9cd7885322fdecebc444f9a3da87c526e7d47f7a12a37d1cc"
|
|
|
|
SRC_URI += "file://0001-__rpc_dtbsize-rlim_cur-instead-of-rlim_max.patch"
|
|
|
|
S = "${WORKDIR}/libtirpc-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
DISABLE_STATIC = ""
|
|
EXTRA_OECONF = "--disable-gssapi --enable-static"
|
|
|
|
do_install:append() {
|
|
rm -r ${D}${sysconfdir} ${D}${datadir} ${D}${libdir}/pkgconfig
|
|
rm ${D}${libdir}/*.so*
|
|
mv ${D}${includedir}/tirpc ${D}${includedir}/tirpc-1.2.6
|
|
}
|
|
|
|
inherit nopackages
|
|
|