blob: 0d16f64f58c5d412ed9f672d8438e5d089b405a9 (
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
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Frederic Bezies <fredbezies at gmail.com>
# Based on work of original synapse PKGBUILD from:
# - Felix Yan <felixonmars@archlinux.org>
# - Alessio Sergi <asergi at archlinux dot us>
# An on synapse-bzr by Benedikt Heine <bebe@bebehei.de>
_pkgname=synapse
pkgname=$_pkgname-git
pkgver=0.2.99.4.r2.g61f8fb8
pkgrel=1
pkgdesc="A semantic file launcher"
arch=('i686' 'x86_64')
url="https://launchpad.net/synapse-project"
license=('GPL3')
conflicts=("$_pkgname")
depends=('libkeybinder3' 'libappindicator-gtk3' 'libgee' 'libnotify' 'zeitgeist')
makedepends=('intltool' 'vala')
optdepends=('banshee: banshee plugin'
'bc: calculator plugin'
'devhelp: documentation plugin'
'gnome-screensaver: screensaver plugin'
'gnome-dictionary: dictionary plugin'
'openssh: ssh plugin'
'pastebinit: pastebin plugin'
'rhythmbox: rhythmbox plugin'
'xnoise: xnoise plugin')
source=("$_pkgname::git://git.launchpad.net/synapse-project")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_pkgname"
./autogen.sh --prefix=/usr
make
}
package() {
cd "$srcdir/$_pkgname"
make DESTDIR="$pkgdir/" install
}
|