summaryrefslogtreecommitdiff
path: root/package/xauth
diff options
context:
space:
mode:
Diffstat (limited to 'package/xauth')
-rw-r--r--package/xauth/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/xauth/Makefile b/package/xauth/Makefile
new file mode 100644
index 000000000..c18f936d0
--- /dev/null
+++ b/package/xauth/Makefile
@@ -0,0 +1,29 @@
+# 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:= xauth
+PKG_VERSION:= 1.0.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 2eb3cc3e4421e1b747c4ac16aac20cda
+PKG_DESCR:= X authority file utility
+PKG_SECTION:= x11
+PKG_DEPENDS:= libx11 libxext libxmu
+PKG_BUILDDEP+= libX11 libXext libXmu
+PKG_URL:= http://www.x.org
+PKG_SITES:= ${MASTER_SITE_XORG}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,XAUTH,$(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_XAUTH)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/xauth $(IDIR_XAUTH)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk