mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-09 20:47:17 +08:00
pkgrel has not been upped since the rebuild didn't fix the issue we were having and the new pkg was not uploaded
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>
|
|
|
|
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
|
|
gcc47.patch)
|
|
md5sums=('ce336b8cca8294f85d8e34b6a7828e38'
|
|
'799785b01a9d3d2e93770c33fffbcda0')
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
patch -p1 < "${srcdir}/gcc47.patch"
|
|
|
|
qmake PREFIX="/usr"
|
|
make install INSTALL_ROOT="${pkgdir}"
|
|
}
|
|
|