Commit 01db963e authored by Seblu's avatar Seblu
Browse files

add kcm_touchpad package


git-svn-id: https://seblu.net/s/archpkg@24 02741741-5192-46b8-8916-7152b19231d9
parent a7d48094
Loading
Loading
Loading
Loading

kcm_touchpad/PKGBUILD

0 → 100644
+26 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Dylon Edwards <deltaecho@archlinux.us>

pkgname=kcm_touchpad
pkgver=0.3.1
pkgrel=2
url="http://www.kde-apps.org/content/show.php/kcm_touchpad?content=113335"
pkgdesc="Synaptics driver based touchpads kcontrol module"
license=('GPL2')
arch=('i686' 'x86_64')
depends=('xf86-input-synaptics' 'kdelibs')
makedepends=('cmake' 'automoc4')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mishaaq/${pkgname}/tarball/${pkgname}-${pkgver}")
md5sums=('f355a658d2e9267fdf4e8d8f88038bcf')

build(){	
  cd ${srcdir}/mishaaq-${pkgname}-00370b5
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
  make
}

package() { 
  cd ${srcdir}/mishaaq-${pkgname}-00370b5
  make DESTDIR="${pkgdir}" install
}