mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
74 lines
2.2 KiB
Bash
74 lines
2.2 KiB
Bash
|
# Maintainer: Xyne <ca dot archlinux at xyne, backwards>
|
||
|
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
|
||
|
# Contributor: Aaron Griffin <aaron@archlinux.org>
|
||
|
# Contributor: dorphell <dorphell@archlinux.org>
|
||
|
|
||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
# - patch from debian, export LDLIBS to explicitly link v5/v6 with libatomic
|
||
|
|
||
|
pkgname=cmus
|
||
|
pkgver=2.8.0
|
||
|
pkgrel=5
|
||
|
pkgdesc='Feature-rich ncurses-based music player'
|
||
|
arch=('x86_64')
|
||
|
url="https://cmus.github.io/"
|
||
|
license=('GPL')
|
||
|
depends=('ncurses' 'libdiscid')
|
||
|
makedepends=(
|
||
|
'faad2'
|
||
|
'ffmpeg'
|
||
|
'flac'
|
||
|
'jack'
|
||
|
'libao'
|
||
|
'libcdio-paranoia'
|
||
|
'libmad'
|
||
|
'libmodplug'
|
||
|
'libmp4v2'
|
||
|
'libmpcdec'
|
||
|
'libpulse'
|
||
|
'libsamplerate'
|
||
|
'libvorbis'
|
||
|
'opusfile>=0.12'
|
||
|
'wavpack'
|
||
|
)
|
||
|
optdepends=('alsa-lib: for ALSA output plugin support'
|
||
|
'libao: for AO output plugin support'
|
||
|
'libpulse: for PulseAudio output plugin support'
|
||
|
'faad2: for AAC input plugin support'
|
||
|
'ffmpeg: for ffmpeg input plugin support'
|
||
|
'flac: for flac input plugin support'
|
||
|
'jack: for jack plugin support'
|
||
|
'libmad: for mp3 input plugin support'
|
||
|
'libmodplug: for modplug input plugin support'
|
||
|
'libmp4v2: for mp4 input plugin support'
|
||
|
'libmpcdec: for musepack input plugin support'
|
||
|
'libsamplerate: for sampe rate converter support'
|
||
|
'libvorbis: for vorbis input plugin support'
|
||
|
'libcdio-paranoia: for cdio support'
|
||
|
'opusfile: for opus input plugin support'
|
||
|
'wavpack: for wavpack input plugin support')
|
||
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/cmus/cmus/archive/v${pkgver}.tar.gz"
|
||
|
'13-atomic_ld.patch')
|
||
|
sha256sums=('756ce2c6241b2104dc19097488225de559ac1802a175be0233cfb6fbc02f3bd2'
|
||
|
'8526dc4649a90513b66ed46cf675e2bc5d0d553f0e3eb438f2dcd317858c64e3')
|
||
|
|
||
|
prepare() {
|
||
|
if [[ $CARCH == "arm" || $CARCH == "armv6h" ]]; then
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
patch -p1 -i ../13-atomic_ld.patch
|
||
|
export LDLIBS="-latomic"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
install -Dm644 contrib/_cmus "$pkgdir"/usr/share/zsh/site-functions/_cmus
|
||
|
}
|