blob: aa35e489801e5c2be480525039a823344c1b21c6 (
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
|
# $Id: PKGBUILD 213860 2014-05-30 16:22:12Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgname=audacious
pkgver=3.5
pkgrel=2
pkgdesc='Lightweight, advanced audio player focused on audio quality'
url='http://audacious-media-player.org/'
license=('custom:BSD')
arch=('i686' 'x86_64')
depends=('gtk3' 'glib2' 'libguess' 'libsm' 'audacious-plugins'
'gnome-icon-theme' 'hicolor-icon-theme' 'desktop-file-utils')
optdepends=('unzip: zipped skins support')
makedepends=('python2') # for gdbus-codegen
source=("http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('dda830fe0f8a2fabd94db9554ac05e6880d0d370')
provides=('audacious-player')
replaces=('audacious-player')
install=install
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --with-buildstamp='Arch Linux'
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|