X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Ffireinfo;h=0c5d313bcc0f441844f0b1717882dc8b1d022ac0;hp=8736ba10ff8b238b3b78342b7abd768b3c7fab54;hb=3ebf8d1b011d7b4346306e150b2cda21c28ceea5;hpb=8bb35e212c9870806f3111b1ba5e3795302cc606 diff --git a/lfs/fireinfo b/lfs/fireinfo index 8736ba10f..0c5d313bc 100644 --- a/lfs/fireinfo +++ b/lfs/fireinfo @@ -24,11 +24,11 @@ include Config -VER = 0.6 +VER = 2.1.8 -THISAPP = fireinfo-$(VER) +THISAPP = fireinfo-v$(VER) DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_IPFIRE) +DL_FROM = http://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 = cc977df8dbe149be184c27105c879116 +$(DL_FILE)_MD5 = 594702e88a729ae0f35ef35d0786e22f install : $(TARGET) @@ -70,11 +70,11 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - 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)