summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fa5f170244e23542ea7c69faa5fdeeae586b1d23 (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
50
51
# Maintainer: 1213 <lambertacampo at gmail dot com>
pkgname=exaile-git
pkgver=3.4.5.r569.g0f06dfe
pkgrel=1
pkgdesc="music player for gnome, similar to KDEs amarok"
arch=('any')
url="http://www.exaile.org"
license=('GPL')
depends=(
  'python2>=2.7.0' 
  'gtk3>=3.10' 
  'gstreamer>=1.4' 
  'mutagen>=1.10' 
  'python2-dbus'
  'python2-gobject>=3.13.2'
  'python2-cairo'
  'udisks2'
  'librsvg'
  'gst-plugins-good')

makedepends=(
  'git'
  'help2man')

optdepends=(
  'python2-beautifulsoup3: lyricwiki plugin'
  )
provides=('exaile')
conflicts=('exaile')
source=(git://github.com/exaile/exaile.git)
md5sums=('SKIP')

_gitname=exaile

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

build() {
  cd "$_gitname"
  make
}

package() {
  cd "$_gitname"
  make DESTDIR="$pkgdir/" PREFIX="/usr" install
  make clean
}

# vim:set ts=2 sw=2 et: