2033a4a95b
Add additional md5, sha1 & sha256 hashes according to buildroot docs: http://buildroot.uclibc.org/downloads/manual/manual.html#adding-packages-hash > If upstream provides more than one type of hash (e.g. sha1 and sha512), > then it is best to add all those hashes in the .hash file. Removed patch 0001, applied upstream: https://cgit.freedesktop.org/xorg/lib/libpciaccess/commit/?id=6bd2f7f92eae713663f4e13f6e2cb23526607b8c Renumbered remaining patch. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
634 B
Makefile
22 lines
634 B
Makefile
################################################################################
|
|
#
|
|
# libpciaccess
|
|
#
|
|
################################################################################
|
|
|
|
LIBPCIACCESS_VERSION = 0.13.5
|
|
LIBPCIACCESS_SOURCE = libpciaccess-$(LIBPCIACCESS_VERSION).tar.bz2
|
|
LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
|
|
LIBPCIACCESS_LICENSE = MIT
|
|
LIBPCIACCESS_LICENSE_FILES = COPYING
|
|
LIBPCIACCESS_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBPCIACCESS_CONF_OPTS += --with-zlib
|
|
LIBPCIACCESS_DEPENDENCIES += zlib
|
|
else
|
|
LIBPCIACCESS_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|