~ubuntu-branches/ubuntu/feisty/pmidi/feisty

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic RESLINGER
  • Date: 2006-07-27 23:00:54 UTC
  • mfrom: (2.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20060727230054-ezkytko9g510tpco
Tags: 1.6.0-2
* New Maintainer.  Closes: #361299.
* debian/watch: Update upstream source files URL.
* Update to Standards-Version 3.7.2.
* debian/control: Change maintainer's name.
* debian/control: Change Alsa version numbers in description.
* debian/control: Add upstream homepage in description.
* debian/copyright: Add Copyright Holders, Copyright notices and Derived works.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# I try them both; if someone has a better way of doing this, please
20
20
# let me know.
21
21
#
22
 
rpm: $(PACKAGE)-$(VERSION).tar.gz
23
 
        cp -av $(PACKAGE)-$(VERSION).tar.gz /usr/src/SOURCES
24
 
        rpm -ba @PACKAGE@.spec || rpmbuild -ba @PACKAGE@.spec
 
22
rpm: dist $(PACKAGE)-$(VERSION).tar.gz
 
23
        rm -rf build
 
24
        (mkdir build; cd build; mkdir SOURCES BUILD SPECS RPMS SRPMS)
 
25
        cp -av $(PACKAGE)-$(VERSION).tar.gz build/SOURCES
 
26
        rpmbuild --define "_topdir `pwd`/build" -ba @PACKAGE@.spec
 
27
        find build -name '*.rpm' | xargs -i cp '{}' . 
 
28
        rm -r build
25
29