File: rules

package info (click to toggle)
libphp-swiftmailer 6.3.0-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,020 kB
  • sloc: php: 27,073; sh: 32; makefile: 12
file content (18 lines) | stat: -rwxr-xr-x 408 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f
# -*- makefile -*-

%:
	dh $@

override_dh_auto_build:
	dh_auto_build
	cp debian/autoload.php lib/autoload.php

override_dh_auto_test:
	mkdir -p vendor
	cp debian/autoload.test.php vendor/autoload.php
	SYMFONY_DEPRECATIONS_HELPER=weak phpunit --include-path lib

override_dh_fixperms:
	dh_fixperms --
	find debian/php-swiftmailer/usr/share/php/Swift -type f -print0 | xargs -r0 chmod -x ;