21 lines
534 B
Plaintext
21 lines
534 B
Plaintext
# Description: X sanal klavye kitaplığı.
|
||
# URL: https://www.yoctoproject.org/tools-resources/projects/matchbox
|
||
# Packager: alihan-ozturk28@hotmail.com
|
||
# Depends on: xorg-libxtst
|
||
|
||
name=libfakekey
|
||
version=0.1
|
||
release=1
|
||
|
||
source=(http://downloads.yoctoproject.org/releases/matchbox/$name/$version/$name-$version.tar.bz2)
|
||
|
||
build() {
|
||
cd $name-$version
|
||
./configure --prefix=/usr \
|
||
--sysconfdir=/etc \
|
||
--localstatedir=/var \
|
||
--disable-static
|
||
make AM_LDFLAGS=-lX11
|
||
make DESTDIR=$PKG install
|
||
}
|