This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
KableDistro/recetas/mplayerplug-in/mplayerplug-in-3.31.build.sh

23 lines
301 B
Bash

#!/bin/sh
## UNPACK
tar xvf mplayerplug-in-3.31.tar.gz
cd mplayerplug-in
## CONFIG
./configure --prefix=/usr || exit -1
## BUILD
make || exit -1
## PKG
mkdir dest
make DESTDIR=$(pwd)/dest install
cd dest
tar cjvfp ../../mplayerplug-in-3.31.tar.bz2 *
cd ..
## CLEANUP
cd ..
rm -rf mplayerplug-in