mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
16 lines
508 B
Bash
Executable File
16 lines
508 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/install zlib
|
|
$SCRIPTS/install faad2
|
|
[ "$VAAPI" = yes ] && $SCRIPTS/install libva
|
|
[ "$VDPAU" = yes ] && $SCRIPTS/install libvdpau
|
|
|
|
mkdir -p $INSTALL/usr/lib
|
|
cp -P $PKG_BUILD/libavcodec/libavcodec.so* $INSTALL/usr/lib
|
|
cp -P $PKG_BUILD/libavformat/libavformat.so* $INSTALL/usr/lib
|
|
cp -P $PKG_BUILD/libavutil/libavutil.so* $INSTALL/usr/lib
|
|
cp -P $PKG_BUILD/libswscale/libswscale.so.* $INSTALL/usr/lib
|
|
cp -P $PKG_BUILD/libpostproc/libpostproc.so.* $INSTALL/usr/lib
|