# fluidlite
FLUID_GITURL := $(GITHUB)/divideconcept/FluidLite.git
FLUID_HASH := 238997654efb20e736512847f3f5f6d618de9423
ifdef HAVE_WIN32
PKGS += fluidlite
endif
ifeq ($(call need_pkg,"fluidlite"),)
PKGS_FOUND += fluidlite
endif
$(TARBALLS)/fluidlite-$(FLUID_HASH).tar.xz:
$(call download_git,$(FLUID_GITURL),,$(FLUID_HASH))
.sum-fluidlite: fluidlite-$(FLUID_HASH).tar.xz
$(call check_githash,$(FLUID_HASH))
touch $@
DEPS_fluidlite = ogg $(DEPS_ogg)
fluidlite: fluidlite-$(FLUID_HASH).tar.xz .sum-fluidlite
$(UNPACK)
$(MOVE)
FLUIDLITE_CONF := -DFLUIDLITE_BUILD_SHARED=OFF
.fluidlite: fluidlite toolchain.cmake
cd $< && rm -f CMakeCache.txt
cd $< && $(HOSTVARS) $(CMAKE) $(FLUIDLITE_CONF)
cd $< && $(CMAKEBUILD) . --target install
touch $@