aboutsummaryrefslogtreecommitdiffstats
path: root/community/youtube-dl
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-03-04 17:17:05 +0100
committerJakub Jirutka <jakub@jirutka.cz>2018-03-04 17:17:05 +0100
commitf5b4314fb61e9fff1e4457e17fac13a0ab7920a1 (patch)
tree2aeb198373505288e9ca3b1f2d9f4e0484043163 /community/youtube-dl
parent980839cfb7e39846b091bc4fdb5468cd8af7b514 (diff)
downloadaports-f5b4314fb61e9fff1e4457e17fac13a0ab7920a1.tar.bz2
aports-f5b4314fb61e9fff1e4457e17fac13a0ab7920a1.tar.xz
community/youtube-dl: remove futile check
./youtube-dl is some binary, probably python sources packaged into single file, that is even not installed, so such check is useless.
Diffstat (limited to 'community/youtube-dl')
-rw-r--r--community/youtube-dl/APKBUILD6
1 files changed, 1 insertions, 5 deletions
diff --git a/community/youtube-dl/APKBUILD b/community/youtube-dl/APKBUILD
index f59dad238b..95c90f1013 100644
--- a/community/youtube-dl/APKBUILD
+++ b/community/youtube-dl/APKBUILD
@@ -10,6 +10,7 @@ url="http://youtube-dl.org"
arch="noarch"
license="Unlicense"
depends="python3 ffmpeg"
+options="!check" # FIXME: run provided tests
subpackages="
$pkgname-doc
$pkgname-zsh-completion:zshcomp
@@ -25,11 +26,6 @@ prepare() {
-e 's|etc/fish/completions|share/fish/completions|'
}
-check() {
- cd "$builddir"
- ./youtube-dl --help > /dev/null
-}
-
package() {
cd "$builddir"
python3 setup.py install --root="$pkgdir/" --optimize=1