blob: 054a72a2298f6b8845dccaa71b9e6ea1744cd379 (
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
|
# Contributor: Nicolas QuiƩnot < niQo at aur >
pkgname=frame
pkgver=2.5.0
pkgrel=2
pkgdesc="Frame handles the buildup and synchronization of a set of simultaneous touches."
arch=(i686 x86_64)
url="https://launchpad.net/frame"
license=(GPL)
depends=('libxi' 'gcc-libs')
makedepends=('xorg-server-devel' 'asciidoc')
provides=('utouch-frame')
conflicts=('utouch-frame')
replaces=('utouch-frame')
options=('!libtool')
source=(https://deb.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.xz)
md5sums=('f523283e80a1de613bd38e3b7f0c5f8e')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|