OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 |
| 4 EAPI=2 |
| 5 CROS_WORKON_COMMIT="9e3daba37d1d15c99a41a2d838bf683934cc7077" |
| 6 |
| 7 inherit autotools cros-workon |
| 8 |
| 9 DESCRIPTION="mtdev library for multitouch" |
| 10 HOMEPAGE="http://bitmath.org/code/mtdev/" |
| 11 KEYWORDS="arm x86" |
| 12 LICENSE="MIT" |
| 13 SLOT="0" |
| 14 IUSE="" |
| 15 RDEPEND="" |
| 16 DEPEND="${RDEPEND}" |
| 17 |
| 18 src_prepare() { |
| 19 eautoreconf || die |
| 20 } |
| 21 |
| 22 src_configure() { |
| 23 econf --disable-static \ |
| 24 --disable-maintainer-mode |
| 25 } |
| 26 |
| 27 src_install() { |
| 28 emake DESTDIR="${D}" install || die |
| 29 rm -f "${D}/usr/lib/libmtdev.la" |
| 30 } |
OLD | NEW |