26 lines
594 B
Bash
26 lines
594 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/ompload/ompload-20101220.ebuild,v 1.6 2012/03/06 10:29:38 xmw Exp $
|
|
|
|
EAPI=3
|
|
|
|
DESCRIPTION="CLI script for uploading files to http://ompldr.org/"
|
|
HOMEPAGE="http://ompldr.org/"
|
|
SRC_URI="mirror://gentoo/${P}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=">=dev-lang/ruby-1.8
|
|
net-misc/curl"
|
|
|
|
src_unpack() {
|
|
install -D "${DISTDIR}"/${P} "${S}"/${PN} || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN} || die
|
|
}
|