summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: faf5fb12a248f249e67f99b5fe03ceea390d9242 (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
52
53
54
55
56
57
58
59
# 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="www.exaile.org"
license=('GPL')
groups=()
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')

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

_gitname=exaile

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

prepare() {
  cd "${srcdir}/${_gitname}"
}

build() {
  cd "$_gitname"
  make clean
}

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

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