Merge pull request #4863 from lucize/dovesql
[feed/packages.git] / net / mii-tool / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 # Copyright (C) 2016 Stijn Segers
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=mii-tool
12 PKG_VERSION=2016-10-06-$(PKG_SOURCE_VERSION)
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://git.code.sf.net/p/net-tools/code
17 PKG_SOURCE_VERSION:=115f1af2494ded1fcd21c8419d5e289bc4df380f
18 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
20 PKG_MIRROR_HASH:=b67157e2912dd210b3e3184b358db6759177a1d8ed6916763e5a629f154f9d7a
21
22 PKG_LICENSE:=GPL-2.0
23 PKG_LICENSE_FILES:=COPYING
24
25 PKG_MAINTAINER:=Stijn Segers <borromini.reg@protonmail.com>
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/mii-tool
30 SECTION:=net
31 CATEGORY:=Network
32 TITLE:=configure media type using MII commands
33 URL:=http://net-tools.sourceforge.net/
34 endef
35
36 define Package/mii-tool/description
37 The mii-tool command allows you to set or autodetect the media type
38 or mii chipset-based ethernet devices. It traditionally had been
39 distributed in the net-tools package. This is a single distribution
40 optimized for embedded systems and fully automated cross/-sysroot-builds
41 endef
42
43 define Build/Configure
44 # Failed configure.sh leaves stub config.h around.
45 rm -f $(PKG_BUILD_DIR)/config.h
46 ( cd $(PKG_BUILD_DIR); yes $$$$'\n' | ./configure.sh config.in )
47 endef
48
49 define Package/mii-tool/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mii-tool $(1)/usr/sbin/
52 endef
53
54 $(eval $(call BuildPackage,mii-tool))