# Description: application that helps access 2nd and 3rd mouse buttons on touchscreen 
# URL: http://www.handhelds.org 
# Maintainer: Victor Martinez, pitillo at ono dot com
# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
# Depends on: libmatchbox 

name=xmonobut
version=0.4.1
release=3
source=(http://familiar.handhelds.org/source/v0.8.4-rc2/sources/xmonobut-0.4.1.tar.gz)

build() {
  cd $name-$version
  sed -e 's|CFLAGS="$CFLAGS `pkg-config --cflags libmb`"|CFLAGS="$CFLAGS -I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions -I$CLFS/usr/include/freetype2"|g' \
    -e 's|MB_LIBS="`pkg-config --libs libmb`"|MB_LIBS="-L$CLFS/usr/lib -lmb"|g' \
    -e 's|$PKG_CONFIG --exists libmb|true|g' -i configure
  ./configure --build=$CHOST \
              --host=$CTARGET \
              --prefix=/usr \
              --mandir=/usr/man \
              --disable-nls 
  make 
  make DESTDIR=$PKG install
}