Makefile 909 B

12345678910111213141516171819202122232425262728
  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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= lxappearance
  5. PKG_VERSION:= 0.5.0
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 7eabab6f4a358dbc6a84e260a0e7f6c2
  8. PKG_DESCR:= LXDE ...
  9. PKG_SECTION:= x11/lxde
  10. PKG_BUILDDEP:= gtk+
  11. PKG_URL:= http://lxde.org/
  12. PKG_SITES:= http://netcologne.dl.sourceforge.net/project/lxde/LXAppearance/
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,LXAPPEARANCE,lxappearance,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CPPFLAGS_FOR_BUILD+= $(shell pkg-config --cflags glib-2.0)
  16. LDFLAGS_FOR_BUILD+= $(shell pkg-config --libs glib-2.0)
  17. lxappearance-install:
  18. $(INSTALL_DIR) $(IDIR_LXAPPEARANCE)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/lxappearance \
  20. $(IDIR_LXAPPEARANCE)/usr/bin
  21. include ${TOPDIR}/mk/pkg-bottom.mk