1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/usr/bin/make -f
DESTDIR := debian/tmp
%:
dh $@
override_dh_autoreconf:
/bin/true
override_dh_auto_configure:
/bin/true
override_dh_auto_build:
/bin/true
override_dh_auto_test:
/bin/true
override_dh_auto_install:
export LIQUIDSOAP_BUILD_TARGET=posix
dune build @install --release
dune install --relocatable --prefix $(DESTDIR)
mkdir -p $(DESTDIR)/share/liquidsoap
cp -rf `opam var share`/camomile $(DESTDIR)/share/liquidsoap
dh_install
override_dh_auto_clean:
/bin/true
|