X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Ffireinfo;h=dec588705d8f59b822518b17928004d5ed00161b;hb=a1eb7761991af6515bd3b08f598454c7720119f8;hp=97b5a87056ba33301eae841166be42cb2c0b98da;hpb=769469ac75365a712cea77dd7089c20a709395b4;p=ipfire-2.x.git diff --git a/lfs/fireinfo b/lfs/fireinfo index 97b5a87056..dec588705d 100644 --- a/lfs/fireinfo +++ b/lfs/fireinfo @@ -24,11 +24,11 @@ include Config -VER = 2.0.2 +VER = 2.1.12 -THISAPP = fireinfo-$(VER) +THISAPP = fireinfo-v$(VER) DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_IPFIRE) +DL_FROM = https://source.ipfire.org/releases/fireinfo/ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = ed29f591ccfeeb6386a61eafcc5dc398 +$(DL_FILE)_MD5 = 40ada8f4eceeb69661d09e43308e5a6a install : $(TARGET) @@ -71,14 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - # Fix for braindead board vendors. - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/fireinfo-invalid-id.patch - - cd $(DIR_APP) && python setup.py build - cd $(DIR_APP) && python setup.py install - - # Remove egg-info - rm -rvf /usr/lib/python*/site-packages/fireinfo*.egg-info + cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh + cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && make $(MAKETUNING) + cd $(DIR_APP) && make install @rm -rf $(DIR_APP) @$(POSTBUILD)