Author: lkajan Date: 2013-04-26 13:36:33 +0000 (Fri, 26 Apr 2013) New Revision: 13429
Modified: trunk/packages/metastudent-data/trunk/debian/Makefile.Debian trunk/packages/metastudent-data/trunk/debian/control trunk/packages/metastudent-data/trunk/debian/rules Log: added missing make dep Modified: trunk/packages/metastudent-data/trunk/debian/Makefile.Debian =================================================================== --- trunk/packages/metastudent-data/trunk/debian/Makefile.Debian 2013-04-26 12:57:53 UTC (rev 13428) +++ trunk/packages/metastudent-data/trunk/debian/Makefile.Debian 2013-04-26 13:36:33 UTC (rev 13429) @@ -7,7 +7,8 @@ all: $(BLASTDB) $(BLASTDB): %.fasta.psq : /usr/share/metastudent-data/%.fasta - formatdb -i "$<" -n "$(@:.psq=)" && rm -f formatdb.log + mkdir -p $(dir $@) && \ + formatdb -i "$<" -n "$(@:.psq=)" && rm -f formatdb.log .PHONY: clean clean: Modified: trunk/packages/metastudent-data/trunk/debian/control =================================================================== --- trunk/packages/metastudent-data/trunk/debian/control 2013-04-26 12:57:53 UTC (rev 13428) +++ trunk/packages/metastudent-data/trunk/debian/control 2013-04-26 13:36:33 UTC (rev 13429) @@ -12,7 +12,7 @@ Package: metastudent-data Architecture: all Homepage: http://www.rostlab.org -Depends: ${misc:Depends}, blast2 +Depends: ${misc:Depends}, blast2, make Description: predictor of Gene Ontology terms from protein sequence - data files Often, only the sequence of a protein is known, but not its functions. Metastudent will try to predict Modified: trunk/packages/metastudent-data/trunk/debian/rules =================================================================== --- trunk/packages/metastudent-data/trunk/debian/rules 2013-04-26 12:57:53 UTC (rev 13428) +++ trunk/packages/metastudent-data/trunk/debian/rules 2013-04-26 13:36:33 UTC (rev 13429) @@ -3,7 +3,7 @@ #export DH_VERBOSE=1 %: - dh $@ + dh $@ --parallel # trick make so that it does not build arch-dep data override_dh_auto_build: _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
