diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-10-19 09:52:45 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-10-19 09:52:45 +0200 |
commit | 794a4a75d2e2c513e55b8962ad9e8e470dd82ba8 (patch) | |
tree | 451fd95b4cc5397612a38a13326dc24add046fb1 /package/dmidecode/Makefile | |
parent | 2f172e3c8d13eb5810d39b3e86c5fae388ba2bfa (diff) |
make virsh, virt-install and kvm usable on shuttle pc
Diffstat (limited to 'package/dmidecode/Makefile')
-rw-r--r-- | package/dmidecode/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/dmidecode/Makefile b/package/dmidecode/Makefile new file mode 100644 index 000000000..4c037298c --- /dev/null +++ b/package/dmidecode/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:= dmidecode +PKG_VERSION:= 2.11 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 9fddbbc3e330bee5950b8b5d424a57cb +PKG_DESCR:= reports information about your system's hardware +PKG_SECTION:= misc +PKG_URL:= http://www.nongnu.org/dmidecode/ +PKG_SITES:= http://download.savannah.gnu.org/releases/dmidecode/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,DMIDECODE,dmidecode,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual + +dmidecode-install: + $(INSTALL_DIR) $(IDIR_DMIDECODE)/usr/sbin + $(INSTALL_BIN) $(WRKINST)/usr/sbin/dmidecode \ + $(IDIR_DMIDECODE)/usr/sbin + +include ${TOPDIR}/mk/pkg-bottom.mk |