mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
907 B
Bash
31 lines
907 B
Bash
# 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=2.1
|
|
pkgrel=2
|
|
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=('9cd034d5abcbc66445478b5824af50f1')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
#make DESTDIR="$pkgdir" install
|
|
make PREFIX=/usr DESTDIR="$pkgdir/" install
|
|
}
|