blob: 29917962b1a790bd50f12604aec156384d942db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: James Hendrie <hendrie.james@gmail.com>
pkgname=qytdl
pkgver=1.6
pkgrel=1
epoch=
pkgdesc="Basic PyQt5 frontend to Youtube-DL"
arch=('any')
url="https://github.com/jahendrie/qytdl"
license=('GPL3')
groups=()
depends=('python>=3.8' 'python-pyqt5>=5.13' 'youtube-dl')
makedepends=('make')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/jahendrie/qytdl/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
noextract=()
md5sums=('f7e1b29b33ae51561599231e03271f9f')
validpgpkeys=()
package() {
cd "$pkgname-$pkgver"
echo "$pkgdir"
make PREFIX="$pkgdir/usr" install
#make DESTDIR="$pkgdir/" install
}
|