diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/debian/rules b/debian/rules index 383cbb7..19c7b48 100755 --- a/debian/rules +++ b/debian/rules @@ -17,16 +17,10 @@ clean: binary-indep: checkroot build $(checkdir) -# There are no architecture-independent files to be uploaded -# generated by this package. If there were any they would be -# made here. - -binary-arch: checkroot build - $(checkdir) -rm -rf debian/tmp install -d debian/tmp cd debian/tmp && install -d `cat ../dirs` - cp Ivy.pm debian/tmp/usr/local/lib/site_perl + cp src/Ivy.pm debian/tmp/usr/lib/perl5 # Must have debmake installed for this to work. Otherwise please copy # /usr/bin/debstd into the debian directory and change debstd to debian/debstd debstd ChangeLog NEWS README TODO @@ -35,6 +29,12 @@ binary-arch: checkroot build chmod -R go=rX debian/tmp dpkg --build debian/tmp .. +binary-arch: checkroot build + $(checkdir) +# There are no architecture-dependent files to be uploaded +# generated by this package. If there were any they would be +# made here. + define checkdir test -f debian/rules endef |