summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9ff0acb5fc14e12e2d05902d25ea22deaff04e1c (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
# $Id$
# Maintainer: Radioactiveman <thomas-lange2@gmx.de>
# Contributor: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>

# To enable Qt support, uncomment the additional dependencies and "--enable-qt".
# Do the same with audacious-plugins-git. Then run Audacious by "audacious --qt".

pkgname=audacious-git
pkgver=2019.02.24
pkgrel=1
pkgdesc="Lightweight, advanced audio player focused on audio quality"
arch=('i686' 'x86_64')
url="https://audacious-media-player.org/"
license=('BSD')
depends=('gtk2' 'libsm' 'gnome-icon-theme' 'desktop-file-utils') # 'qt5-base')
makedepends=('python2' 'git') # for gdbus-codegen
optdepends=('unzip: zipped skins support')
provides=('audacious')
conflicts=('audacious')
install=$pkgname.install
source=('git://github.com/audacious-media-player/audacious.git')
sha256sums=('SKIP')

pkgver() {
  date +%Y.%m.%d
}

build() {
  cd "$srcdir/audacious"

  autoreconf -I m4
  ./configure \
    --prefix=/usr \
    --with-buildstamp="$(date +%x)" \
  # --enable-qt \

  make
}

package() {
  cd "$srcdir/audacious"
  make DESTDIR="$pkgdir" install
  install -Dm644 COPYING "$pkgdir/usr/share/licenses/audacious/LICENSE"
}