blob: dd229bee2307af3490ba0d4ec22c39e564b4d2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Contributor: Daniele Debernardi <drebrez@gmail.com>
# Maintainer: Daniele Debernardi <drebrez@gmail.com>
pkgname=libfakekey
pkgver=0.3
pkgrel=0
pkgdesc="X virtual keyboard library"
url="https://www.yoctoproject.org/software-item/matchbox/"
arch="all"
license="GPL-2.0-or-later"
makedepends="autoconf automake libtool libxtst-dev"
subpackages="$pkgname-dev"
source="http://git.yoctoproject.org/cgit/cgit.cgi/$pkgname/snapshot/$pkgname-$pkgver.tar.gz"
options="!check" # No test suite present
prepare() {
default_prepare
autoreconf --install
}
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make AM_LDFLAGS=-lX11
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="9c09007c6ab616095bdf69669cfdf0d176d44beaeb6b2a0fe8e310bb835d3f241ca7499dcb523c1eeeb24968ef908c1951f97352da419fc1bbb3883cb43dd963 libfakekey-0.3.tar.gz"
|