summary refs log tree commit diff
path: root/pkgs/development/libraries/libdvdread/builder.sh
blob: 1581116ce53ffc5b196f91aa6ec43fcca081d8b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
buildinputs="$libdvdcss"
. $stdenv/setup || exit 1

tar xvfj $src || exit 1
cd libdvdread-* || exit 1
./configure --prefix=$out --with-libdvdcss="$libdvdcss" || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1