mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
25 lines
750 B
Bash
25 lines
750 B
Bash
pkgname=minitube
|
|
pkgver=2.4
|
|
pkgrel=2
|
|
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' 'phonon-backend-vlc')
|
|
categories=('multimedia')
|
|
install=${pkgname}.install
|
|
screenshot="http://flavio.tordini.org/files/minitube/minitube-01.jpg"
|
|
source=("https://github.com/flaviotordini/${pkgname}/archive/${pkgver}.tar.gz")
|
|
md5sums=('90e8f7c8adfe633553e08d98edd77961')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
qmake "DEFINES += APP_GOOGLE_API_KEY=AIzaSyBt58M-8FXF3Rwj5hmK2k4ATbkqBk8c-JA"
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make install INSTALL_ROOT="${pkgdir}"
|
|
}
|