b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | # |
| 2 | # This is free software, licensed under the GNU General Public License v2. |
| 3 | # See /LICENSE for more information. |
| 4 | # |
| 5 | include $(TOPDIR)/rules.mk |
| 6 | |
| 7 | PKG_NAME:=fakeroot |
| 8 | PKG_VERSION:=1.36 |
| 9 | PKG_RELEASE:=1 |
| 10 | |
| 11 | PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz |
| 12 | PKG_SOURCE_URL:=@DEBIAN/pool/main/f/fakeroot |
| 13 | PKG_HASH:=7fe3cf3daf95ee93b47e568e85f4d341a1f9ae91766b4f9a9cdc29737dea4988 |
| 14 | PKG_LICENSE:=GPL-3.0-or-later |
| 15 | PKG_LICENSE_FILES:=COPYING |
| 16 | PKG_FIXUP:=autoreconf |
| 17 | |
| 18 | include $(INCLUDE_DIR)/host-build.mk |
| 19 | |
| 20 | HOST_CONFIGURE_VARS += \ |
| 21 | ac_cv_header_sys_capability_h=no \ |
| 22 | ac_cv_func_capset=no \ |
| 23 | CPP="$(HOSTCC) -E" |
| 24 | |
| 25 | HOST_CONFIGURE_ARGS += \ |
| 26 | --with-ipc=tcp |
| 27 | |
| 28 | define Host/Uninstall |
| 29 | -$(call Host/Compile/Default,uninstall) |
| 30 | endef |
| 31 | |
| 32 | $(eval $(call HostBuild)) |