alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

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 }