diff options
author | Phil Sutter <phil@nwl.cc> | 2010-06-13 03:45:57 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2010-06-20 16:24:14 +0200 |
commit | 62b3bb88ed3c766badca5304d0e169fc652d856c (patch) | |
tree | 3d21ae93e1fe0b8fed3eba4a6a33683944ad53e8 /package/xvinfo | |
parent | 59d394a67db43c38767af9fb496754bbe6dde153 (diff) |
port xvinfo
Diffstat (limited to 'package/xvinfo')
-rw-r--r-- | package/xvinfo/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/xvinfo/Makefile b/package/xvinfo/Makefile new file mode 100644 index 000000000..ceebddd9f --- /dev/null +++ b/package/xvinfo/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:= xvinfo +PKG_VERSION:= 1.1.0 +PKG_RELEASE:= 1 +PKG_MD5SUM:= cc00d609136ecc0b6b571dc42740a675 +PKG_DESCR:= Print out X-Video extension adaptor information +PKG_SECTION:= x11 +PKG_DEPENDS:= xorg-server +KG_BUILDDEP+= xorg-server +PKG_URL:= http://xorg.freedesktop.org/ +PKG_SITES:= http://xorg.freedesktop.org/archive/individual/app/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XVINFO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +post-install: + $(INSTALL_DIR) $(IDIR_XVINFO)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/xvinfo \ + $(IDIR_XVINFO)/usr/bin + +include ${TOPDIR}/mk/pkg-bottom.mk |