Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= brutefir
  5. PKG_VERSION:= 1.0m
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 23b80500fc8687be338bc2654ecc509eccc06fe9372815361b65ed9b1807ccca
  8. PKG_DESCR:= convulution engine
  9. PKG_SECTION:= mm/audio
  10. PKG_DEPENDS:= fftw
  11. PKG_BUILDDEP:= flex-host fftw
  12. PKG_URL:= http://www.ludd.luth.se/~torger/brutefir.html
  13. PKG_SITES:= http://www.ludd.luth.se/~torger/files/
  14. # if downloaded package is not ending with .tar.xz use following
  15. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  16. MAKE_ENV+= FLEX=$(STAGING_HOST_DIR)/usr/bin/flex
  17. include $(ADK_TOPDIR)/mk/package.mk
  18. $(eval $(call PKG_template,BRUTEFIR,brutefir,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  19. CONFIG_STYLE= manual
  20. brutefir-install:
  21. $(INSTALL_DIR) $(IDIR_BRUTEFIR)/usr/bin
  22. $(INSTALL_DIR) $(IDIR_BRUTEFIR)/usr/lib/brutefir
  23. $(INSTALL_BIN) $(WRKINST)/usr/local/bin/brutefir \
  24. $(IDIR_BRUTEFIR)/usr/bin
  25. $(CP) $(WRKINST)/usr/local/lib $(IDIR_BRUTEFIR)/usr/lib
  26. include $(ADK_TOPDIR)/mk/pkg-bottom.mk