mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
NuttX Build Target `sim:nxcamera` failed to build because chromium.googlesource.com is blocking our download of libyuv library: https://github.com/apache/nuttx/actions/runs/24106742084/job/70356374433#step:10:603 ``` Configuration/Tool: sim/nxcamera Building NuttX... curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/stable.tar.gz -o libyuv.tar.gz gzip: stdin: not in gzip format ``` This PR updates the libyuv Makefile to download libyuv from the NuttX Mirror Repo instead: https://github.com/NuttX/nuttx/releases/tag/libyuv Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
48 lines
1.7 KiB
Makefile
48 lines
1.7 KiB
Makefile
############################################################################
|
|
# apps/graphics/libyuv/Makefile
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
|
|
include $(APPDIR)/Make.defs
|
|
|
|
SRCDIR = libyuv
|
|
|
|
CXXEXT := .cc
|
|
CXXFLAGS += -Wno-shadow -Wno-undef
|
|
CXXSRCS = $(wildcard $(SRCDIR)/source/*.cc)
|
|
|
|
libyuv.tar.gz:
|
|
$(Q) curl -L https://github.com/NuttX/nuttx/releases/download/libyuv/libyuv-refs_heads_$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz
|
|
$(Q) mkdir -p $(SRCDIR)
|
|
$(Q) tar zxf libyuv.tar.gz --directory $(SRCDIR)
|
|
ifeq ($(CONFIG_LIBYUV_BRANCH),"stable")
|
|
$(Q) patch -p0 < 0001-include-libyuv-fix-strict-prototype-warning.patch
|
|
endif
|
|
|
|
# Download and unpack tarball if no git repo found
|
|
ifeq ($(wildcard libyuv/.git),)
|
|
context:: libyuv.tar.gz
|
|
|
|
distclean::
|
|
$(call DELDIR, libyuv)
|
|
$(call DELFILE, libyuv.tar.gz)
|
|
endif
|
|
|
|
include $(APPDIR)/Application.mk
|