summary refs log tree commit diff
path: root/pkgs/applications/audio/bmp-plugins/wma/builder.sh
blob: 686242677a48b5390d345f9a7fbb7e4690437f3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
source $stdenv/setup

makeFlags="-f Makefile.bmp"

installPhase=installPhase
installPhase() {
    ensureDir "$out/lib/bmp/Input"
    cp libwma.so "$out/lib/bmp/Input"
}

genericBuild