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 | |
6 inherit autotools cros-workon | |
7 | |
8 DESCRIPTION="mtdev library for multitouch" | |
9 HOMEPAGE="http://bitmath.org/code/mtdev/" | |
10 KEYWORDS="~arm ~x86" | |
11 LICENSE="MIT" | |
12 SLOT="0" | |
13 IUSE="" | |
14 RDEPEND="" | |
15 DEPEND="${RDEPEND}" | |
16 | |
17 src_prepare() { | |
18 eautoreconf || die | |
19 } | |
20 | |
21 src_configure() { | |
22 econf --disable-static \ | |
23 --disable-maintainer-mode | |
24 } | |
25 | |
26 src_install() { | |
27 emake DESTDIR="${D}" install || die | |
28 rm -f "${D}/usr/lib/libmtdev.la" | |
29 } | |
OLD | NEW |