mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-09 19:57:23 +08:00
27 lines
742 B
Bash
27 lines
742 B
Bash
pkgname=smtube
|
|
pkgver=15.5.10
|
|
pkgrel=1
|
|
pkgdesc="Search and download videos from YouTube"
|
|
arch=('x86_64')
|
|
url="http://smplayer.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('qt' 'qtwebkit')
|
|
optdepends=('mplayer: play videos with MPlayer'
|
|
'smplayer: play videos with SMPlayer'
|
|
'kdemultimedia-dragonplayer: play videos with Dragon Player'
|
|
'vlc: play videos with VLC')
|
|
install="$pkgname.install"
|
|
source=("http://downloads.sourceforge.net/smplayer/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('ac05ed80bf724463512246832e57f253')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
#make DESTDIR="$pkgdir" install
|
|
make PREFIX=/usr DESTDIR="$pkgdir/" install
|
|
}
|