blob: 4bd1eadf1d8798f4186a32abc319de8270e9cccd (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-ShareDir/File-ShareDir-1.00.ebuild,v 1.2 2008/12/17 09:53:22 tove Exp $
MODULE_AUTHOR="ADAMK"
inherit perl-module
DESCRIPTION="Locate per-dist and per-module shared files"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/perl
dev-perl/Class-Inspector
dev-perl/Params-Util"
SRC_TEST="do"
src_install(){
find "${S}" \( -name "sample.txt" -o -name "test_file.txt" \) -delete
perl-module_src_install
}
|