abuild (393B)
1 name=libvpx 2 version=1.15.2 3 release=1 4 source="https://github.com/webmproject/$name/archive/v$version/$name-$version.tar.gz" 5 6 build() { 7 # Remove the perl requirement from configure. 8 # Also fix issue with non-GNU diff. 9 sed 's/perl/:/g;s/diff --version/command -v diff/' -i configure 10 11 mkdir libvpx-build 12 cd libvpx-build 13 14 ../configure --prefix=/usr --enable-shared 15 make 16 make install 17 }