diff options
Diffstat (limited to 'package/xkbcomp/Makefile')
-rw-r--r-- | package/xkbcomp/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/xkbcomp/Makefile b/package/xkbcomp/Makefile new file mode 100644 index 000000000..ca3b8a9e2 --- /dev/null +++ b/package/xkbcomp/Makefile @@ -0,0 +1,26 @@ +# 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:= xkbcomp +PKG_VERSION:= 1.0.5 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 10e6661a35aa994a9aa73ded0cf70259 +PKG_DESCR:= x11 keyboard compiler +PKG_SECTION:= x11 +PKG_SITES:= http://xorg.freedesktop.org/releases/X11R7.4/src/everything/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XKBCOMP,${PKG_NAME},$(PKG_VERSION)-$(PKG_RELEASE),${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_XKBCOMP}/usr/bin + ${INSTALL_BIN} ${WRKINST}/usr/bin/xkbcomp ${IDIR_XKBCOMP}/usr/bin + +include ${TOPDIR}/mk/pkg-bottom.mk |