Show
Ignore:
Timestamp:
03/22/09 18:13:49 (1 year ago)
Author:
piotras
Message:

Install files using relative path.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midgard/apis/mono/debian/midgard-sharp.install

    r10661 r21398  
    1 debian/tmp/usr/lib/mono/gac/midgard-sharp/1.0.*/midgard-sharp.dll 
    2 debian/tmp/usr/lib/mono/gac/midgard-sharp/1.0.*/midgard-sharp.dll.config 
    3 debian/tmp/usr/lib/mono/midgard-sharp/midgard-sharp.dll 
    4  
     1usr/lib/mono/gac/midgard-sharp/1.0.*/midgard-sharp.dll 
     2usr/lib/mono/gac/midgard-sharp/1.0.*/midgard-sharp.dll.config 
     3usr/lib/mono/midgard-sharp/midgard-sharp.dll 
  • trunk/midgard/apis/mono/debian/rules

    r10661 r21398  
    66# Uncomment this to turn on verbose mode. 
    77#export DH_VERBOSE=1 
     8 
     9export DH_COMPAT=4 
     10export DH_OPTIONS 
     11 
     12DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) 
     13DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) 
     14DEB_BUILD_ARCH   ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) 
     15 
     16switch-arch: 
     17        sed -e 's/Architecture: NOTSET/Architecture: ${DEB_BUILD_ARCH}/g' debian/control > control.dummy 
     18        mv control.dummy debian/control 
    819 
    920configure: configure-stamp 
     
    3243        dh_installdirs 
    3344        $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp 
     45        dh_install --sourcedir=debian/tmp 
    3446 
    3547binary-arch: build install 
     
    4355        dh_fixperms 
    4456        dh_installdeb 
    45         dh_shlibdeps 
     57        dh_shlibdeps -L libmidgard2-2009 
    4658        dh_gencontrol 
    4759        dh_md5sums 
    4860        dh_builddeb 
    4961 
    50 binary: binary-indep binary-arch 
    51 .PHONY: build clean binary-indep binary-arch binary install configure 
     62binary: switch-arch binary-indep binary-arch 
     63.PHONY: switch-arch build clean binary-indep binary-arch binary install configure