1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
# Copyright 2008 Sylvestre Ledru <sylvestre.ledru@inria.fr>
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
build/scilab-plotlib::
SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 DOCBOOK_ROOT=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
/usr/bin/scilab -nw -f builder.sce
clean::
rm -fr build-stamp help/*/scilab_*_help/ jar/
install/scilab-plotlib::
mkdir -p $(CURDIR)/debian/scilab-plotlib/usr/lib/scilab-plotlib/
mkdir -p $(CURDIR)/debian/scilab-plotlib/usr/share/scilab/contrib/
cd $(CURDIR)/debian/scilab-plotlib/usr/share/scilab/contrib/; \
rm -f scilab-plotlib; \
ln -s ../../../lib/scilab-plotlib/ plotlib
get-orig-source:
-uscan --upstream-version 0
|