summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d740cd036e37c419ad9857a05efaf4f675fd2ad5 (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
# Maintainer: Pavlo Ilin <ilin.pa@gmail.com>
# Contributor: swiftscythe <swiftscythe@gmail.com>

pkgname=gigolo-git
pkgver=0.4.2.r77.g1a32294
pkgrel=1
epoch=1
pkgdesc="Frontend to manage connections to remote filesystems using GIO/GVFS"
arch=(i686 x86_64)
url="http://goodies.xfce.org/projects/applications/gigolo"
license=('GPL2')
groups=('xfce4-git')
depends=('gtk2')
makedepends=('git' 'xfce4-dev-tools')
provides=("gigolo")
conflicts=('gigolo')
source=("$pkgname::git://git.xfce.org/apps/gigolo")

noextract=()
md5sums=('SKIP')


pkgver() {
  cd $pkgname
  git describe --long | sed -E 's/gigolo.//;s/([^-]*-g)/r\1/;s/-/./g'
}

build() {
  cd $pkgname
  ./autogen.sh  
  ./configure --prefix=/usr
  make
}

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