summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 974e2ddc0ffe31b30805953ea14ac095d4cc310c (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
# Maintainer: Austin Haedicke

# If you find errors or have suggestions feel free to file an issue
# or submit a pull request @ https://github.com/savagezen/pkgbuild

pkgname=cmus-git
pkgver=v2.8.0.r24.gd1290d5
pkgrel=2
pkgdesc="Small, fast and powerful console music player for Unix-like operating systems."
arch=('x86_64')
url="https://cmus.github.io/"
depends=('ncurses')
makedepends=('git')
optdepends=('alsa-lib: ALSA output plugin support'
	    'faad2: Advanced Audio Codec support'
	    'ffmpeg: .ffmpeg, .wma, .ape, .mka, .tta, .shn'
	    'flac: Free Lossless Audio Codec support'
	    'libao: for AO output plugin support'
	    'libcddb: .cdio'
	    'libcdio: .cdio'
	    'libcdio-paranoia: .cdio'
	    'libcue: .cue'		
	    'libmad: MPEG Audio Layer support'
	    'libmikmod: .mod, .s3m'
	    'libmodplug: .mod, .s3m'
	    'libmp4v2: .mp4, .m4a, .m4b'
            'libmpcdec: .mpc, .mpp, .mp+'
	    'libpulse: PulseAudio output plugin support'
	    'libvorbis: .ogg'
	    'opusfile: .opus'
	    'oss: OSS'
	    'wavpack: .wv')
conflicts=('cmus')
provides=('cmus')
license=('GPL')
source=(git://github.com/cmus/cmus)
sha512sums=('SKIP')
_gitname=cmus

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

build() {
  cd "$_gitname"
  ./configure prefix=/usr
  make
}

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