12345678910111213141516171819202122232425262728 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include $(TOPDIR)/rules.mk
- PKG_NAME:= lxappearance
- PKG_VERSION:= 0.5.0
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 7eabab6f4a358dbc6a84e260a0e7f6c2
- PKG_DESCR:= LXDE ...
- PKG_SECTION:= x11/lxde
- PKG_BUILDDEP:= gtk+
- PKG_URL:= http://lxde.org/
- PKG_SITES:= http://netcologne.dl.sourceforge.net/project/lxde/LXAppearance/
- include $(TOPDIR)/mk/package.mk
- $(eval $(call PKG_template,LXAPPEARANCE,lxappearance,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CPPFLAGS_FOR_BUILD+= $(shell pkg-config --cflags glib-2.0)
- LDFLAGS_FOR_BUILD+= $(shell pkg-config --libs glib-2.0)
- lxappearance-install:
- $(INSTALL_DIR) $(IDIR_LXAPPEARANCE)/usr/bin
- $(INSTALL_BIN) $(WRKINST)/usr/bin/lxappearance \
- $(IDIR_LXAPPEARANCE)/usr/bin
- include ${TOPDIR}/mk/pkg-bottom.mk
|