summaryrefslogtreecommitdiff
path: root/extra/libstroke/PKGBUILD
blob: 107b62f24ea3cbcd6473db09916ce5ae385b63a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $Id: PKGBUILD 123180 2011-05-09 03:18:04Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>

pkgname=libstroke
pkgver=0.5.1
pkgrel=4
pkgdesc="A stroke (mouse gesture) translation library"
arch=('i686' 'x86_64')
url="http://etla.net/libstroke/"
license=('GPL2')
depends=('glibc')
makedepends=('libx11' 'gtk')
options=('!libtool')
source=(http://etla.net/libstroke/${pkgname}-${pkgver}.tar.gz libgstroke-Makefile.am.patch libstroke-Makefile.am.patch)
md5sums=('51b9a4e309ac15cfcab96191eed03cb2'
         '60bbaf355355c3c66c8015b0f7feca85'
         '96413a77e1d39d1a3223e8eb6be8ef01')
sha1sums=('48bd2b98faa8681ccd97eda7a09442845dbf1b7b'
          'a0c3bd9e894650475ba3049b0ef3d7f9580c203d'
          'ee5a3635c31dba00b070a942c512cc0d53056188')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  patch -p1 < ../libgstroke-Makefile.am.patch
  patch -p1 < ../libstroke-Makefile.am.patch

  libtoolize --force --copy
  aclocal
  autoconf
  automake --add-missing --force --copy

  ./configure --prefix=/usr
  make
}

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