blob: 2dc499d15bf226b1152eb78a26c6c9e047370332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
include $(TOPDIR)/rules.mk
PKG_NAME:=unifdef
PKG_VERSION:=2.12
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://dotat.at/prog/$(PKG_NAME)
PKG_HASH:=fba564a24db7b97ebe9329713ac970627b902e5e9e8b14e19e024eb6e278d10b
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=BSD-2-clause
PKG_HOST_ONLY:=1
HOST_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk
HOST_CFLAGS += -std=gnu17
TARGET_CFLAGS += -std=gnu17
define Package/unifdef
SECTION:=devel
CATEGORY:=Development
TITLE:=selectively remove C preprocessor conditionals
URL:=https://dotat.at/prog/unifdef
BUILDONLY:=1
endef
define Package/unifdef/description
The unifdef utility selectively processes conditional C preprocessor #if and
#ifdef directives. It removes from a file both the directives and the
additional text that they delimit, while otherwise leaving the file alone.
endef
define Host/Install
$(INSTALL_DIR) $(1)/bin
$(INSTALL_BIN) $(HOST_BUILD_DIR)/unifdef $(1)/bin
endef
define Host/Uninstall
$(RM) $(1)/bin/unifdef
endef
define Package/unifdef/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/unifdef $(1)/usr/bin/
endef
$(eval $(call BuildPackage,unifdef))
$(eval $(call HostBuild))
|