2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: X sanal klavye kitaplığı.
|
2017-03-30 14:04:57 +02:00
|
|
|
|
# URL: https://www.yoctoproject.org/tools-resources/projects/matchbox
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: alihan-ozturk28@hotmail.com
|
|
|
|
|
# Gerekler: xorg-libxtst
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
|
|
name=libfakekey
|
|
|
|
|
version=0.1
|
|
|
|
|
release=1
|
|
|
|
|
|
|
|
|
|
source=(http://downloads.yoctoproject.org/releases/matchbox/$name/$version/$name-$version.tar.bz2)
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2016-02-24 01:27:23 +01:00
|
|
|
|
cd $name-$version
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
--localstatedir=/var \
|
|
|
|
|
--disable-static
|
|
|
|
|
make AM_LDFLAGS=-lX11
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
}
|