mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
34 lines
1.0 KiB
Bash
34 lines
1.0 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dog]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=minitube
|
|
pkgver=1.7.1
|
|
pkgrel=1
|
|
pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player"
|
|
arch=('i686' 'x86_64')
|
|
url="http://flavio.tordini.org/minitube"
|
|
license=('GPL')
|
|
depends=('phonon' 'qt>=4.5.0')
|
|
optdepends=('phonon-xine: for xine backend (default by chakra)'
|
|
'phonon-gstreamer: for gstreamer backend'
|
|
'gstreamer0.10-plugins: to get all videos to play with phonon-gstreamer'
|
|
'phonon-mplayer: for mplayer backend'
|
|
'phonon-vlc: for vlc backend')
|
|
categories=('multimedia')
|
|
install=minitube.install
|
|
source=(http://flavio.tordini.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('ce336b8cca8294f85d8e34b6a7828e38')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
qmake PREFIX="/usr"
|
|
make install INSTALL_ROOT="${pkgdir}"
|
|
}
|
|
|