26 lines
512 B
Bash
26 lines
512 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
DESCRIPTION="Event Emulation for the uTouch Stack"
|
|
SRC_URI="https://launchpad.net/evemu/trunk/evemu-${PV}/+download/evemu-${PV}.tar.gz"
|
|
HOMEPAGE="https://launchpad.net/utouch-evemu"
|
|
KEYWORDS="~x86 ~amd64"
|
|
SLOT="0"
|
|
LICENSE="GPL-3"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/evemu-${PV}"
|
|
|
|
src_compile() {
|
|
pushd ${S}
|
|
econf
|
|
emake || die
|
|
popd
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
|
|
}
|