mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
31 lines
798 B
Plaintext
31 lines
798 B
Plaintext
# Contributor: Ivan Tham <pickfire@riseup.net>
|
|
# Maintainer: Ivan Tham <pickfire@riseup.net>
|
|
pkgname=you-get
|
|
pkgver=0.4.1011
|
|
pkgrel=0
|
|
pkgdesc="Tiny command line utility to download media contents"
|
|
url="https://you-get.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="python3-dev"
|
|
source="https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="757a9da29dc9fb10100a270d3ae60feb17ca9f3f0400ca0d0f2839e0e229c1db1e51cd6bcb79a51a9db4d9e58cd5642186ec3b735d43fc262f75ff59a55f611f you-get-0.4.1011.tar.gz"
|