2015-02-09 16:28:38 +08:00
|
|
|
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
|
|
# Original CCR Maintainer and Contributer:
|
|
|
|
# Maintainer: ahjolinna < ahjolinna@ovi.com>
|
|
|
|
# Contributor: xylosper <darklin20@gmail.com>
|
|
|
|
|
|
|
|
pkgname=bomi
|
2015-02-15 07:05:01 +08:00
|
|
|
pkgver=0.9.2
|
2015-02-11 10:36:02 +08:00
|
|
|
pkgrel=1
|
2015-02-09 16:28:38 +08:00
|
|
|
pkgdesc="Powerful and easy-to-use multimedia player"
|
|
|
|
arch=('x86_64')
|
|
|
|
url="http://bomi-player.github.io"
|
|
|
|
license=('GPL2')
|
|
|
|
screenshot='http://i.imgur.com/j76hzyd.png'
|
|
|
|
provides=('cmplayer')
|
|
|
|
install=$pkgname.install
|
|
|
|
depends=('qt5-base' 'qt5-declarative' 'qt5-x11extras' 'qt5-quickcontrols' 'icu'
|
|
|
|
'libdvdread' 'libdvdnav' 'libcdio-paranoia' 'libcdio'
|
|
|
|
'alsa-lib' 'libpulse' 'jack' 'libchardet' 'libbluray'
|
2015-02-15 07:05:01 +08:00
|
|
|
'mpg123' 'libva' 'libgl' 'fribidi' 'libass' 'ffmpeg' 'systemd')
|
2015-02-11 10:36:02 +08:00
|
|
|
makedepends=('mesa' 'gcc' 'pkg-config' 'python3' 'qt5-tools')
|
2015-02-09 16:28:38 +08:00
|
|
|
optdepends=('libaacs: AACS decryption for Blu-ray support'
|
|
|
|
'libbdplus: BD+ decryption for Blu-ray support'
|
|
|
|
'youtube-dl: streaming website support including YouTube'
|
|
|
|
'yle-dl: rtmpdump frontend for Yle servers')
|
|
|
|
provides=('cmplayer')
|
|
|
|
replace=('cmplayer')
|
|
|
|
conflicts=('cmplayer' 'bomi-git')
|
|
|
|
source=(https://github.com/xylosper/bomi/archive/v$pkgver.tar.gz)
|
2015-02-15 07:05:01 +08:00
|
|
|
md5sums=('071e5c2b2e21581eb91aa67ff9630b78')
|
2015-02-09 16:28:38 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2015-02-15 07:05:01 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-jack \
|
|
|
|
--enable-pulseaudio \
|
|
|
|
--enable-cdda \
|
|
|
|
--defaultskin=Native \
|
|
|
|
--enable-systemd
|
2015-02-09 16:28:38 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DEST_DIR=$pkgdir install
|
|
|
|
}
|