Convert packages to new template
[openwrt.git] / package / rules.mk
1 ifneq ($(DUMP),)
2 all: dumpinfo
3 else
4 all: compile
5 endif
6
7 define Build/DefaultTargets
8 $(PKG_BUILD_DIR)/.prepared:
9 rm -rf $(PKG_BUILD_DIR)
10 mkdir -p $(PKG_BUILD_DIR)
11 $(call Build/Prepare)
12 touch $$@
13
14 $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
15 $(call Build/Configure)
16 touch $$@
17
18 ifeq ($(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),.)
19 $(PKG_BUILD_DIR)/.prepared: clean
20 endif
21
22 $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
23 $(call Build/Compile)
24 touch $$@
25
26 package-clean:
27 $(call Build/Clean)
28 rm -f $(PKG_BUILD_DIR)/.built
29
30 package-recompile:
31 rm -f $(PKG_BUILD_DIR)/.built
32
33 .PHONY: package-clean package-recompile
34
35 define Build/DefaultTargets
36 endef
37 endef
38
39 define Package/Default
40 CONFIGFILE:=
41 SECTION:=opt
42 CATEGORY:=Extra packages
43 DEPENDS:=
44 MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
45 SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
46 VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
47 PKGARCH:=$(ARCH)
48 PRIORITY:=optional
49 DEFAULT:=
50 MENU:=
51 TITLE:=
52 DESCRIPTION:=
53 endef
54
55 define BuildPackage
56 $(eval $(call Package/Default))
57 $(eval $(call Package/$(1)))
58
59 ifeq ($(TITLE),)
60 $$(error Package $(1) has no TITLE)
61 endif
62 ifeq ($(CATEGORY),)
63 $$(error Package $(1) has no CATEGORY)
64 endif
65 ifeq ($(PRIORITY),)
66 $$(error Package $(1) has no PRIORITY)
67 endif
68 ifeq ($(VERSION),)
69 $$(error Package $(1) has no VERSION)
70 endif
71 ifeq ($(PKGARCH),)
72 PKGARCH:=$(ARCH)
73 endif
74 $(eval
75 ifeq ($(DESCRIPTION),)
76 DESCRIPTION:=$(TITLE)
77 endif
78 )
79
80 IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk
81 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(1)
82 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
83
84 ifneq ($(CONFIG_PACKAGE_$(1)),)
85 COMPILE_$(1):=1
86 endif
87 ifneq ($(DEVELOPER),)
88 COMPILE_$(1):=1
89 endif
90 ifeq ($(CONFIG_PACKAGE_$(1)),y)
91 install-targets: $$(INFO_$(1))
92 endif
93
94 ifneq ($$(COMPILE_$(1)),)
95 ifeq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $$(IPKG_$(1)) $(PKG_BUILD_DIR)),$(PKG_BUILD_DIR))
96 $(PKG_BUILD_DIR)/.built: package-recompile
97 endif
98
99 compile-targets: $$(IPKG_$(1))
100 endif
101
102
103 IDEPEND_$(1):=$$(strip $$(DEPENDS))
104
105 DUMPINFO += \
106 echo "Package: $(1)";
107 ifneq ($(MENU),)
108 DUMPINFO += \
109 echo "Menu: $(MENU)";
110 endif
111 ifneq ($(DEFAULT),)
112 DUMPINFO += \
113 echo "Default: $(DEFAULT)";
114 endif
115 DUMPINFO += \
116 echo "Version: $(VERSION)"; \
117 echo "Depends: $$(IDEPEND_$(1))"; \
118 echo "Category: $(CATEGORY)"; \
119 echo "Title: $(TITLE)"; \
120 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g';
121 ifneq ($(URL),)
122 DUMPINFO += \
123 echo; \
124 echo "$(URL)";
125 endif
126 DUMPINFO += \
127 echo "@@";
128
129
130 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.prepared
131 mkdir -p $$(IDIR_$(1))/CONTROL
132 echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
133 echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
134 echo "Depends: $$(IDEPEND_$(1))" >> $$(IDIR_$(1))/CONTROL/control
135 echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
136 echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
137 echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
138 echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
139 echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
140 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
141 chmod 644 $$(IDIR_$(1))/CONTROL/control
142 for file in conffiles preinst postinst prerm postrm; do \
143 [ -f ./ipkg/$(1).$$$$file ] && cp ./ipkg/$(1).$$$$file $$(IDIR_$(1))/CONTROL/$$$$file || true; \
144 done
145
146 $$(IPKG_$(1)): $$(IDIR_$(1))/CONTROL/control $(PKG_BUILD_DIR)/.built
147 $(call Package/$(1)/install,$$(IDIR_$(1)))
148 mkdir -p $(PACKAGE_DIR)
149 $(RSTRIP) $$(IDIR_$(1))
150 $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
151
152 $$(INFO_$(1)): $$(IPKG_$(1))
153 $(IPKG) install $$(IPKG_$(1))
154
155 $(1)-clean:
156 rm -f $(PACKAGE_DIR)/$(1)_*
157 clean: $(1)-clean
158
159 ifneq ($(__DEFAULT_TARGETS),1)
160 $(eval $(call Build/DefaultTargets))
161 endif
162
163 endef
164
165 ifneq ($(strip $(PKG_SOURCE)),)
166 $(DL_DIR)/$(PKG_SOURCE):
167 @$(CMD_TRACE) "downloading... "
168 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL) $(MAKE_TRACE)
169
170 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
171 endif
172
173 ifneq ($(strip $(PKG_CAT)),)
174 define Build/Prepare/Default
175 if [ "$(PKG_CAT)" = "unzip" ]; then \
176 unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE) ; \
177 else \
178 $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) - ; \
179 fi
180 if [ -d ./patches ]; then \
181 $(PATCH) $(PKG_BUILD_DIR) ./patches ; \
182 fi
183 endef
184 endif
185
186 define Build/Prepare
187 $(call Build/Prepare/Default)
188 endef
189
190 define Build/Configure/Default
191 (cd $(PKG_BUILD_DIR); \
192 [ -x configure ] && \
193 $(TARGET_CONFIGURE_OPTS) \
194 CFLAGS="$(TARGET_CFLAGS)" \
195 ./configure \
196 --target=$(GNU_TARGET_NAME) \
197 --host=$(GNU_TARGET_NAME) \
198 --build=$(GNU_HOST_NAME) \
199 --prefix=/usr \
200 --exec-prefix=/usr \
201 --bindir=/usr/bin \
202 --sbindir=/usr/sbin \
203 --libexecdir=/usr/lib \
204 --sysconfdir=/etc \
205 --datadir=/usr/share \
206 --localstatedir=/var \
207 --mandir=/usr/man \
208 --infodir=/usr/info \
209 $(DISABLE_NLS) \
210 $(1); \
211 )
212 endef
213
214 define Build/Configure
215 $(call Build/Configure/Default)
216 endef
217
218 define Build/Compile/Default
219 $(MAKE) -C $(PKG_BUILD_DIR) \
220 CC=$(TARGET_CC) \
221 CROSS="$(TARGET_CROSS)" \
222 PREFIX="$$(IDIR_$(1))" \
223 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
224 ARCH="$(ARCH)" \
225 DESTDIR="$$(IDIR_$(1))"
226 endef
227
228 define Build/Compile
229 $(call Build/Compile/Default)
230 endef
231
232 define Build/Clean
233 $(MAKE) clean
234 endef
235
236 ifneq ($(DUMP),)
237 dumpinfo:
238 $(DUMPINFO)
239 else
240
241 source: $(DL_DIR)/$(PKG_SOURCE)
242 prepare: source
243 @[ -f $(PKG_BUILD_DIR)/.prepared ] || { \
244 $(CMD_TRACE) "preparing... "; \
245 $(MAKE) $(PKG_BUILD_DIR)/.prepared $(MAKE_TRACE); \
246 }
247
248 configure: prepare
249 @[ -f $(PKG_BUILD_DIR)/.configured ] || { \
250 $(CMD_TRACE) "configuring... "; \
251 $(MAKE) $(PKG_BUILD_DIR)/.configured $(MAKE_TRACE); \
252 }
253
254 compile-targets:
255 compile: configure
256 @$(CMD_TRACE) "compiling... "
257 @$(MAKE) compile-targets $(MAKE_TRACE)
258
259 install-targets:
260 install:
261 @$(CMD_TRACE) "installing... "
262 @$(MAKE) install-targets $(MAKE_TRACE)
263
264 rebuild:
265 $(CMD_TRACE) "rebuilding... "
266 $(MAKE) package-clean compile $(MAKE_TRACE)
267
268 $(PACKAGE_DIR):
269 mkdir -p $@
270
271 clean-targets:
272 clean:
273 @$(CMD_TRACE) "cleaning... "
274 @$(MAKE) clean-targets $(MAKE_TRACE)
275 rm -rf $(PKG_BUILD_DIR)
276 endif
277
278 .PHONY: all source prepare compile install clean rebuild dumpinfo compile-targets install-targets clean-targets
This page took 0.055865 seconds and 5 git commands to generate.