X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=lfs%2Futil-linux;h=cb8e32d5796589da5df57f2117a53768d0251362;hp=40f371b2b81517a698e5423912eb95dc077ff801;hb=15b1a3e360a277dc7481103f8ddcbf189033e3a6;hpb=33a1b286084cf0745aced5f17c86e39b41859c40 diff --git a/lfs/util-linux b/lfs/util-linux index 40f371b2b8..cb8e32d579 100644 --- a/lfs/util-linux +++ b/lfs/util-linux @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2013 IPFire Team # +# Copyright (C) 2007-2018 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,13 +24,15 @@ include Config -VER = 2.24 +VER = 2.28.2 THISAPP = util-linux-$(VER) DL_FILE = $(THISAPP).tar.xz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +PROG = util-linux + ############################################################################### # Top-level Rules @@ -40,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 4fac6443427f575fc5f3531a4ad2ca01 +$(DL_FILE)_MD5 = 46a232a37bce45371a86d19300edc47a install : $(TARGET) @@ -70,8 +72,21 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure - cd $(DIR_APP) && make $(MAKETUNING) HAVE_KILL=yes HAVE_SLN=yes - cd $(DIR_APP) && make HAVE_KILL=yes HAVE_SLN=yes install + cd $(DIR_APP) && ./configure \ + --docdir=/usr/share/doc/util-linux \ + --disable-static \ + --disable-nls \ + --disable-static \ + --enable-pg \ + --without-python \ + --without-systemd \ + --without-systemdsystemunitdir + cd $(DIR_APP) && make $(MAKETUNING) + cd $(DIR_APP) && make install + + # Install fstrim cronjob + mkdir -p /etc/fcron.daily + install -m 0755 $(DIR_SRC)/config/fstrim/trim /etc/fcron.daily/trim + @rm -rf $(DIR_APP) @$(POSTBUILD)