mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=minitube
|
|
pkgver=1.5
|
|
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')
|
|
install=minitube.install
|
|
source=(http://flavio.tordini.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('27929edeaf68c5062a8c2fb7b7403016')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
qmake PREFIX="/usr" || return 1
|
|
make install INSTALL_ROOT="${pkgdir}" || return 1
|
|
}
|
|
|