New comment by knusbaum on void-packages repository https://github.com/void-linux/void-packages/issues/13114#issuecomment-513964258 Comment: If if upstream wants to remove stuff like this, I'll package it. I don't really want to patch around it. Someone else is free to. https://github.com/ossrs/srs/blob/6e6e996bbaee73473f2ace76b7cb45a065368e7c/trunk/auto/depends.sh#L383-L397 ``` ##################################################################################### # check the os. ##################################################################################### # user must specifies something what a fuck, we suppport following os: # centos/ubuntu/osx, # cross build for embeded system, for example, mips or arm, # directly build on arm/mips, for example, pi or cubie, # export srs-librtmp # others is invalid. if [[ $OS_IS_UBUNTU = NO && $OS_IS_CENTOS = NO && $OS_IS_OSX = NO && $SRS_EXPORT_LIBRTMP_PROJECT = NO ]]; then if [[ $SRS_PI = NO && $SRS_CUBIE = NO && $SRS_CROSS_BUILD = NO ]]; then echo "what a fuck, os not supported." exit 1 fi fi ```