~ubuntu-branches/ubuntu/trusty/exfat-utils/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Sven Hoexter
  • Date: 2012-01-02 12:59:11 UTC
  • Revision ID: package-import@ubuntu.com-20120102125911-cgfufx4owcavjw1j
Tags: 0.9.5-1
Initial release. (Closes: #625611)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
 
 
4
# Uncomment this to turn on verbose mode.
 
5
#export DH_VERBOSE=1
 
6
 
 
7
%:
 
8
        dh $@ 
 
9
 
 
10
override_dh_auto_build:
 
11
        scons
 
12
 
 
13
override_dh_auto_clean:
 
14
        scons -c
 
15
 
 
16
override_dh_auto_install:
 
17
        mkdir -p debian/exfat-utils/sbin
 
18
        cd debian/exfat-utils/sbin && \
 
19
                ln -s exfatfsck fsck.exfat; \
 
20
                ln -s mkexfatfs mkfs.exfat
 
21
 
 
22
        mkdir -p debian/exfat-utils/usr/share/man/man8
 
23
        cd debian/exfat-utils/usr/share/man/man8 && \
 
24
                ln -s exfatfsck.8.gz fsck.exfat.8.gz; \
 
25
                ln -s mkexfatfs.8.gz mkfs.exfat.8.gz