You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
932 B
35 lines
932 B
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/eclass/sword-module.eclass,v 1.3 2011/12/27 17:55:12 fauli Exp $
|
|
|
|
#
|
|
# eclass to simplify installation of Sword modules
|
|
# Bugs to theology@gentoo.org
|
|
#
|
|
|
|
HOMEPAGE="http://www.crosswire.org/sword/modules/"
|
|
|
|
# Sword packages are generally released as FooBar.zip in their 'rawzip' form
|
|
# The files are also unversioned, so the packager will need to rename the
|
|
# original file to something else and host it somewhere to avoid breaking
|
|
# the digest when new versions are released.
|
|
|
|
SRC_URI="mirror://gentoo/${SWORD_MODULE}-${PV}.zip"
|
|
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}"
|
|
|
|
RDEPEND="app-text/sword"
|
|
DEPEND="app-arch/unzip"
|
|
|
|
sword-module_src_install() {
|
|
insinto /usr/share/sword/modules
|
|
doins -r "${S}"/modules/*
|
|
insinto /usr/share/sword/mods.d
|
|
doins "${S}"/mods.d/*
|
|
}
|
|
|
|
EXPORT_FUNCTIONS src_install
|