mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 21:07:14 +08:00
28 lines
773 B
Bash
28 lines
773 B
Bash
pkgname=smtube
|
|
pkgver=15.8.0
|
|
pkgrel=1
|
|
pkgdesc="Search and download videos from YouTube"
|
|
arch=('x86_64')
|
|
url="http://www.smtube.org/"
|
|
license=('GPL')
|
|
depends=('qtwebkit')
|
|
optdepends=('mplayer: play videos with MPlayer'
|
|
'smplayer: play videos with SMPlayer'
|
|
'kdemultimedia-dragonplayer: play videos with Dragon Player'
|
|
'vlc: play videos with VLC'
|
|
'mpv: play videos with MPV'
|
|
'youtube-dl: download videos')
|
|
install="$pkgname.install"
|
|
source=("http://downloads.sourceforge.net/smtube/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('e826605b099774a1a779933deab7dfbe')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make PREFIX=/usr DESTDIR="$pkgdir/" install
|
|
}
|