~ubuntu-branches/ubuntu/lucid/mobile-broadband-provider-info/lucid-updates

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-04 11:05:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090804110537-3lzowvvu0sjyg8lk
Tags: 20090622-0ubuntu1
* New upstream release (22 Jun 09) - 231ddeed8913a5112eb93dcd95db75a77ede53fb
* fix clean tarball build by touching aclocal.m4 in pre-build:: target
  - update debian/rules
* drop mobile-broadband-provider-info-dev package
  - update debian/control
  - remove debian/mobile-broadband-provider-info-dev.install
* dont explicitly set DEB_DH_INSTALL_SOURCEDIR to debian/tmp in rules
  as we only build one binary package now
  - update debian/rules
* drop debian/mobile-broadband-provider-info.install
* add Breaks: libmbca0 which cannot handle new database format
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
 
dist_pkgdata_DATA = serviceproviders.xml serviceproviders.dtd
 
3
SP_XML_DB = serviceproviders.xml
 
4
 
 
5
dist_pkgdata_DATA = $(SP_XML_DB) serviceproviders.2.dtd
4
6
 
5
7
EXTRA_DIST = mobile-broadband-provider-info.pc.in
6
8
 
7
 
pkgconfigdir = $(libdir)/pkgconfig
 
9
pkgconfigdir = $(datadir)/pkgconfig
8
10
pkgconfig_DATA = mobile-broadband-provider-info.pc
 
11
 
 
12
check-local:
 
13
        xmllint --valid $(top_srcdir)/$(SP_XML_DB) 2>&1 > /dev/null || exit 1;
 
14