merge nico's package/rules.mk and package/templates.mk into one file, update packages...
[openwrt/svn-archive/archive.git] / openwrt / package / rules.mk
1 define PKG_template
2 IPKG_$(1):=$(PACKAGE_DIR)/$(2)_$(3)_$(4).ipk
3 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(2)
4 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(2).list
5
6 ifneq ($(BR2_PACKAGE_$(1)),)
7 compile: $$(IPKG_$(1))
8 endif
9 ifeq ($(BR2_PACKAGE_$(1)),y)
10 install: $$(INFO_$(1))
11 endif
12
13 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.prepared
14 $(SCRIPT_DIR)/make-ipkg-dir.sh $$(IDIR_$(1)) ./ipkg/$(2).control $(3) $(4)
15 for file in conffiles preinst postinst prerm postrm; do \
16 [ -f ./ipkg/$(2).$$$$file ] && cp ./ipkg/$(2).$$$$file $$(IDIR_$(1))/CONTROL/$$$$file || true; \
17 done
18
19 $$(INFO_$(1)): $$(IPKG_$(1))
20 $(IPKG) install $$(IPKG_$(1))
21
22 $(2)-clean:
23 rm -f $$(IPKG_$(1))
24 clean: $(2)-clean
25
26 endef
27
28 ifneq ($(strip $(PKG_SOURCE)),)
29 $(DL_DIR)/$(PKG_SOURCE):
30 $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
31 endif
32
33 ifneq ($(strip $(PKG_CAT)),)
34 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
35 rm -rf $(PKG_BUILD_DIR)
36 $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
37 if [ -d ./patches ]; then \
38 $(PATCH) $(PKG_BUILD_DIR) ./patches ; \
39 fi
40 touch $(PKG_BUILD_DIR)/.prepared
41 endif
42
43 all: compile
44
45 source: $(DL_DIR)/$(PKG_SOURCE)
46 prepare: $(PKG_BUILD_DIR)/.prepared
47 compile:
48 install:
49
50 clean:
51 rm -rf $(PKG_BUILD_DIR)
52
53 .PHONY: all source prepare compile install clean