mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-09-30 20:41:43 +00:00
There are no patches that need to be refreshed. Changelog: https://salsa.debian.org/clint/fakeroot/-/blob/debian/1.37.1.2-1/debian/changelog?ref_type=tags Link: https://github.com/openwrt/openwrt/pull/19545 Signed-off-by: Nick Hainke <vincent@systemli.org>
33 lines
734 B
Makefile
33 lines
734 B
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=fakeroot
|
|
PKG_VERSION:=1.37.1.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
PKG_SOURCE_URL:=@DEBIAN/pool/main/f/fakeroot
|
|
PKG_HASH:=959496928c8a676ec8377f665ff6a19a707bfad693325f9cc4a4126642f53224
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
HOST_CONFIGURE_VARS += \
|
|
ac_cv_header_sys_capability_h=no \
|
|
ac_cv_func_capset=no \
|
|
CPP="$(HOSTCC) -E"
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
--with-ipc=tcp
|
|
|
|
define Host/Uninstall
|
|
-$(call Host/Compile/Default,uninstall)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|