blob: c34bceedc8a6779d89897773d4d0d6553ffeb1bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
VERSION=1.0
clean:
rm -rf php-malware-finder/debian
extract:
cp -r debian php-malware-finder
set_distribution:
sed -e "s/##version/`cut -d'.' -f1 < /etc/debian_version`/" -i php-malware-finder/debian/control php-malware-finder/debian/changelog
package: clean extract set_distribution
cd php-malware-finder && debuild -b -us -uc --lintian-opts -X po-debconf
|