~ubuntu-branches/ubuntu/wily/tupi/wily-proposed

« back to all changes in this revision

Viewing changes to src/store/store.pro

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-06-23 12:48:05 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130623124805-9xq9kggclxvli7r9
Tags: 0.2+git02-1
* New upstream release [June 2013].
  + ready for "libav9" transition.
* Build-Depends:
  + libquazip-dev
* Packaging updates:
  + added ugly override for broken upstream libav detection;
    "pkg-config" is added to Build-Depends for that matter.
  + rules simplified as upstream introduced support for $(DESTDIR).
  + re-build translations after configure.
  + re-build/re-compress man page.
  + dropped all patches.
  + updated lintian-overrides, new overrides for
    "library-not-linked-against-libc" in private libs.
  + ship all icons and docs in -data package.
  + data de-duplication in -data package.
  + debian/watch to check for tags at github as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# Subdir relative project main directory: ./src/store
4
4
# Target is a library:  
5
5
 
6
 
INSTALLS += headers 
7
 
headers.target = .
8
 
headers.commands = cp *.h $(INSTALL_ROOT)/include/tupistore
9
 
headers.path = /include/tupistore/
 
6
!include(../../tupiglobal.pri) {
 
7
    error("Please configure first")
 
8
}
10
9
 
11
10
INSTALLS += target
12
 
target.path = /lib
 
11
target.path = /lib/
 
12
 
 
13
contains("DEFINES", "ADD_HEADERS") {
 
14
    INSTALLS += headers
 
15
    headers.target = .
 
16
    headers.commands = cp *.h $(INSTALL_ROOT)/include/tupistore
 
17
    headers.path = /include/tupistore/
 
18
}
13
19
 
14
20
macx {
15
21
    CONFIG += plugin warn_on
118
124
include($$FRAMEWORK_DIR/framework.pri)
119
125
LIBTUPI_DIR = ../libtupi
120
126
include($$LIBTUPI_DIR/libtupi.pri)
121
 
 
122
 
include(../../tupiglobal.pri)
123
 
 
124