Makefile 815 B

1234567891011121314151617181920212223242526272829
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:= lame
  7. PKG_VERSION:= 398-2
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 719dae0ee675d0c16e0e89952930ed35
  10. MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=lame/}
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,LAME,lame,$(PKG_VERSION)-$(PKG_RELEASE)))
  13. $(eval $(call PKG_template,LIBLAME,liblame,$(PKG_VERSION)-$(PKG_RELEASE)))
  14. CONFIGURE_STYLE= gnu
  15. BUILD_STYLE= auto
  16. INSTALL_STYLE= auto
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_LAME)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/lame $(IDIR_LAME)/usr/bin/
  20. $(INSTALL_DIR) $(IDIR_LIBLAME)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/lib*.so* $(IDIR_LIBLAME)/usr/lib
  22. include ${TOPDIR}/mk/pkg-bottom.mk