mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=minitube
|
|
pkgver=2.1.6
|
|
pkgrel=1
|
|
pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player"
|
|
arch=('x86_64')
|
|
url="http://flavio.tordini.org/minitube"
|
|
license=('GPL')
|
|
depends=('phonon' 'qt')
|
|
optdepends=('phonon-xine: for xine backend'
|
|
'phonon-mplayer: for mplayer backend'
|
|
'phonon-vlc: for vlc backend')
|
|
categories=('multimedia')
|
|
install=minitube.install
|
|
screenshot="http://flavio.tordini.org/files/minitube/minitube-01.jpg"
|
|
source=("http://flavio.tordini.org/files/${pkgname}/${pkgname}-1.2.6.tar.gz"
|
|
"$pkgname-missing-locale.patch")
|
|
md5sums=('b5a7794cad661d47e0e856b864f774af'
|
|
'70cdaa1d3df700cf90243be5a0d55443')
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
# remove missing translations
|
|
patch -p1 -i ../${source[1]}
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
qmake
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
make install INSTALL_ROOT="${pkgdir}"
|
|
}
|