blob: 3453dd0333c9519153fb325a167116c4167d1823 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /usr/bin/make -f
override_dh_auto_install:
mkdir -p debian/boca-submission-tools
make -j1 install-submission-tools DESTDIR=debian/boca-submission-tools
mkdir -p debian/boca-web
make -j1 install-bocaapache DESTDIR=debian/boca-web
mkdir -p debian/boca-autojudge
make -j1 install-bocaautojudge DESTDIR=debian/boca-autojudge
mkdir -p debian/boca-db
make -j1 install-bocadb DESTDIR=debian/boca-db
mkdir -p debian/boca-common
make -j1 install-bocacommon DESTDIR=debian/boca-common
%:
dh $@
|