mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
32 lines
964 B
Bash
32 lines
964 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Maintainer: UtG <utg.chakra.linux[at]gmail[dot]com>
|
|
# Contributor: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: redzion simobrinci@gmail.com
|
|
|
|
pkgname=smtube
|
|
pkgver=14.8.0
|
|
pkgrel=1
|
|
pkgdesc="Search and download videos from YouTube"
|
|
arch=('x86_64')
|
|
url="http://smplayer.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('qt')
|
|
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=('21d9341a1a5de13a7064296f6625d399')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
#make DESTDIR="$pkgdir" install
|
|
make PREFIX=/usr DESTDIR="$pkgdir/" install
|
|
}
|