mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
26 lines
709 B
Bash
26 lines
709 B
Bash
# Contributor: Lukas Fleischer <archlinux at cryptocrack dot de>
|
|
# Contributor: zoulnix <z[o]ulnix.borkedduck.c[o]m>
|
|
|
|
pkgname=libfakekey
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc='X virtual keyboard library.'
|
|
arch=('i686' 'x86_64')
|
|
url='https://www.yoctoproject.org/tools-resources/projects/matchbox'
|
|
license=('GPL')
|
|
depends=('libxtst')
|
|
source=("http://downloads.yoctoproject.org/releases/matchbox/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('83dbde4d77e8baf0176fe4291d8a2303')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
|
|
make AM_LDFLAGS=-lX11
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|