]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/faad2
cpufrequtils: fix initskript for amd-pstate
[people/pmueller/ipfire-2.x.git] / lfs / faad2
index 5ec1541c12690e799f90171a2d41caa4053d7c23..5a5218a7c3641b9f8aa185e1c1a331ee0420c9ff 100644 (file)
--- a/lfs/faad2
+++ b/lfs/faad2
@@ -24,7 +24,9 @@
 
 include Config
 
-VER        = 2.8.8
+SUMMARY    = C library and frontend for decoding MPEG2/4 AAC
+
+VER        = 2_10_0
 
 THISAPP    = faad2-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,10 +34,12 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = faad2
-PAK_VER    = 2
+PAK_VER    = 3
 
 DEPS       =
 
+SERVICES   =
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -44,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 28f6116efdbe9378269f8a6221767d1f
+$(DL_FILE)_BLAKE2 = 73ecbcbb3fce93e8ceb88f6f7669bb681d2329935018cc2a23929cf6672959a0678b47c830cfdcf8e716709ce5252a02178737a7af09de373f7c8b54f38f3d9d
 
 install : $(TARGET)
 
@@ -52,13 +56,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects))
 
 download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
-md5 : $(subst %,%_MD5,$(objects))
+b2 : $(subst %,%_BLAKE2,$(objects))
 
-dist: 
+dist:
        @$(PAK)
 
 ###############################################################################
-# Downloading, checking, md5sum
+# Downloading, checking, b2sum
 ###############################################################################
 
 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
@@ -67,8 +71,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -79,9 +83,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        $(UPDATE_AUTOMAKE)
 
+       cd $(DIR_APP) && autoupdate
+       cd $(DIR_APP) && autoreconf -fvi
        cd $(DIR_APP) && ./configure \
                --prefix=/usr \
                --enable-shared \
+               --disable-static \
                --with-mpeg4ip
 
        cd $(DIR_APP) && make $(MAKETUNING)