Changeset 435 for tags/pyragua-0.2.5 – Pyragua

Changeset 435 for tags/pyragua-0.2.5

Show
Ignore:
Timestamp:
12/27/09 21:01:54 (2 years ago)
Author:
junix
Message:

Actualizado las reglas, respetando el debian policy

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tags/pyragua-0.2.5/debian/rules

    r434 r435  
    11#!/usr/bin/make -f 
     2# Sample debian/rules that uses debhelper.  
     3# This file is public domain software, originally written by Joey Hess. 
     4# 
     5# This version is for packages that are architecture independent. 
    26 
    3 build:  
     7# Uncomment this to turn on verbose mode. 
     8#export DH_VERBOSE=1 
     9 
     10build: build-stamp 
     11build-stamp: 
     12        dh_testdir 
     13        touch build-stamp 
    414 
    515clean: 
    616        dh_testdir 
    717        dh_testroot 
    8         rm -f build-stamp configure-stamp 
     18        rm -f build-stamp 
    919        rm -rf ../build 
    10         dh_clean  
    1120        rm -rf debian/pyragua 
    1221        find . -name "*.pyc" -exec rm -rf {} \; 
     22        dh_clean  
     23 
    1324 
    1425install: build 
    1526        dh_testdir 
    1627        dh_testroot 
    17         dh_clean 
     28        dh_prep 
    1829        dh_installdirs 
    19         dh_compress 
    20         dh_install 
    21         dh_link 
    2230                 
    23 binary-arch: 
    24  
    2531binary-indep: build install 
    2632        dh_testdir 
    2733        dh_testroot 
    2834        dh_installmenu 
    29         dh_icons 
    3035        dh_installman doc/pyragua-ide.es.1 
    3136        dh_installman doc/pyragua-ide.1 
    3237        dh_installchangelogs ChangeLog 
    3338        dh_installdocs 
     39        dh_install 
     40        dh_icons 
     41        dh_link 
    3442        dh_compress 
    3543        dh_fixperms 
     
    4149        dh_compress 
    4250 
     51binary-arch: build install 
     52 
    4353binary: binary-indep binary-arch 
    44 .PHONY: build clean binary-indep binary-arch binary install configure 
     54.PHONY: build clean binary-indep binary-arch binary install