blob: 767168e38825a87b225dcb69ba6aa3bb9a4c8d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
EAPI=5
MODULE_AUTHOR=BDFOY
MODULE_VERSION=1.24_02
inherit perl-module
DESCRIPTION="Look up the vendor for a MAC"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos"
SRC_URI="https://github.com/briandfoy/net-mac-vendor/archive/release-1.24_02.zip -> ${P}.zip"
RESTRICT="nomirror"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
S="${WORKDIR}"/net-mac-vendor-release-"${PV/p}"
src_prepare() {
perl_rm_files .releaserc lib/.releaserc
perl_rm_files Changes README.pod
}
|