Changeset 713c078f0bdeba9a2dab71c33bf83611437b8164

Show
Ignore:
Timestamp:
04/06/08 08:24:54 (3 months ago)
Author:
Jean-Baptiste Kempf <jb@altair.videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@altair.videolan.org> 1207463094 +0200
git-parent:

[a52b66d42253f03343197fde517eef915c16de31]

git-author:
Jean-Baptiste Kempf <jb@altair.videolan.org> 1207463094 +0200
Message:

FluidSynth? in the contribs.
It doesn't work yet with mingw;

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/src/Makefile

    ra52b66d r713c078  
    23642364DISTCLEAN_PKG += asa.git.tar.gz 
    23652365 
    2366 
     2366# *************************************************************************** 
     2367# FluidSynth library (Midi) 
     2368# *************************************************************************** 
     2369 
     2370fluidsynth-$(FLUID_VERSION).tar.gz: 
     2371    $(WGET) $(FLUID_URL) 
     2372 
     2373fluidsynth: fluidsynth-$(FLUID_VERSION).tar.gz 
     2374    $(EXTRACT_GZ) 
     2375 
     2376.fluid: fluidsynth 
     2377    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) 
     2378    touch $@ 
     2379 
     2380CLEAN_FILE += .fluid 
     2381CLEAN_PKG += fluidsynth 
     2382DISTCLEAN_PKG += fluidsynth-$(NCURSES_VERSION).tar.gz 
     2383 
     2384 
    23672385# *************************************************************************** 
    23682386# Some cleaning 
  • extras/contrib/src/packages.mak

    reaf9ed5 r713c078  
    218218PCRE_VERSION=7.6 
    219219PCRE_URL=ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$(PCRE_VERSION).tar.bz2 
     220FLUID_VERSION=1.0.8 
     221FLUID_URL=http://download.savannah.gnu.org/releases/fluid/fluidsynth-$(FLUID_VERSION).tar.gz