root/trunk/debian/rules

Revision 6, 326 bytes (checked in by bombadil, 4 years ago)

renombrando proyecto a oak.

  • Property svn:executable set to *
Line 
1#!/usr/bin/make -f
2
3PACKAGE=debian/oak-framework
4
5all:
6        echo "Debe indicar: clean, build o binary"
7
8clean:
9        dh_testroot
10        dh_clean
11
12build:
13        dh_testroot
14        dh_installdirs
15        dh_install -X.svn
16        dh_compress -i
17        dh_fixperms -i
18        dh_installdeb -i
19        dh_gencontrol -i
20        dh_md5sums -i
21        dh_installdebconf -n
22
23binary:
24        dh_testroot
25        dh_builddeb
Note: See TracBrowser for help on using the browser.