crda: move wireless-regdb to own package.

update crda to 1.1.1.
update wireless-regdb to 2011.04.28.
This commit is contained in:
Arne Fitzenreiter
2011-06-01 14:13:39 +02:00
parent 39d4fe16c5
commit 3ced8695af
7 changed files with 89 additions and 13 deletions

View File

@@ -24,12 +24,10 @@
include Config
VER = 20110202-git
REGDB = regulatory-20110202
VER = 1.1.1
THISAPP = crda-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FILE = $(THISAPP).tar.bz2
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
@@ -39,13 +37,11 @@ TARGET = $(DIR_INFO)/$(THISAPP)
# Top-level Rules
###############################################################################
objects = $(DL_FILE) $(REGDB).tar.xz
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(REGDB).tar.xz = $(DL_FROM)/$(REGDB).tar.xz
$(DL_FILE)_MD5 = 1da048b854cca1f1087c1250df335ca8
$(REGDB).tar.xz_MD5 = 620621172d18d6f8cdc2db423dcb6381
$(DL_FILE)_MD5 = 5fc77af68b3e21736b8ef2f8b061c810
install : $(TARGET)
@@ -74,9 +70,7 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
-mkdir /usr/lib/crda
tar Jxf $(DIR_DL)/$(REGDB).tar.xz -C /usr/lib/crda/
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && USE_OPENSSL=1 make $(MAKETUNING)
cd $(DIR_APP) && USE_OPENSSL=1 make install
@rm -rf $(DIR_APP)