| Benjamin Diaz | 31c6f75 | 2018-09-26 17:30:55 -0300 | [diff] [blame^] | 1 | all: clean package |
| 2 | |||||
| 3 | clean: | ||||
| 4 | rm -rf dist deb_dist osm_mon-*.tar.gz osm_mon.egg-info .eggs | ||||
| 5 | |||||
| 6 | package: | ||||
| 7 | python3 setup.py --command-packages=stdeb.command sdist_dsc | ||||
| 8 | cp debian/python3-osm-mon.postinst deb_dist/osm-mon*/debian | ||||
| 9 | cd deb_dist/osm-mon*/ && dpkg-buildpackage -rfakeroot -uc -us | ||||