added: debian packaging control files

This commit is contained in:
Arne Morten Kvarving 2013-02-20 17:14:47 +01:00
parent 42e1fc6d10
commit fb2eb9e8f6
11 changed files with 145 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
libopm-core (2013.03-1) unstable; urgency=low
* Initial release
-- Arne Morten Kvarving <arne.morten.kvarving@sintef.no> Mon, 14 Jan 2013 15:33:54 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

87
debian/control vendored Normal file
View File

@ -0,0 +1,87 @@
Source: libopm-core
Priority: extra
Maintainer: Arne Morten Kvarving <arne.morten.kvarving@sintef.no>
Build-Depends: build-essential, debhelper (>= 9), libboost-filesystem-dev,
libboost-system-dev, libboost-date-time-dev, libboost-test-dev,
libsuperlu3-dev, gfortran, libsuitesparse-dev,
libdune-common-dev, libdune-istl-dev, cmake, libtinyxml-dev, bc,
libert.ecl-dev, git, zlib1g-dev, libtool
Build-Depends-Indep: doxygen, texlive-latex-extra, texlive-latex-recommended, ghostscript
Standards-Version: 3.9.2
Section: libs
Homepage: http://opm-project.org
Vcs-Git: git://github.com/OPM/opm-core.git
Vcs-Browser: https://github.com/OPM/opm-core
Package: libopm-core1-dev
Section: libdevel
Architecture: all
Multi-Arch: foreign
Depends: libopm-core1 (= ${binary:Version})
Provides: libopm-core-dev
Suggests: libopm-core1-doc
Description: OPM core library -- development files
The OPM core library is the core library within OPM and contains
* Eclipse deck input and preprosessing
* Fluid properties (basic PVT models and rock properties)
* Grid handling (cornerpoint grids, unstructured grid interface)
* Linear Algebra (interface to different linear solvers)
* Pressure solvers (various discretization schemes, flow models)
* Simulators (some basic examples of simulators based on sequential splitting schemes)
* Transport solvers (various discretization schemes, flow models)
* Utilities (input and output processing, unit conversion)
* Wells (basic well handling)
Package: libopm-core1
Section: libs
Pre-Depends: ${misc:Pre-Depends}, multiarch-support
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: libopm-core
Description: OPM core library
The OPM core library is the core library within OPM and contains
* Eclipse deck input and preprosessing
* Fluid properties (basic PVT models and rock properties)
* Grid handling (cornerpoint grids, unstructured grid interface)
* Linear Algebra (interface to different linear solvers)
* Pressure solvers (various discretization schemes, flow models)
* Simulators (some basic examples of simulators based on sequential splitting schemes)
* Transport solvers (various discretization schemes, flow models)
* Utilities (input and output processing, unit conversion)
* Wells (basic well handling)
Package: libopm-core1-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Provides: libopm-core-doc
Description: OPM core library -- documentation
The OPM core library is the core library within OPM and contains
* Eclipse deck input and preprosessing
* Fluid properties (basic PVT models and rock properties)
* Grid handling (cornerpoint grids, unstructured grid interface)
* Linear Algebra (interface to different linear solvers)
* Pressure solvers (various discretization schemes, flow models)
* Simulators (some basic examples of simulators based on sequential splitting schemes)
* Transport solvers (various discretization schemes, flow models)
* Utilities (input and output processing, unit conversion)
* Wells (basic well handling)
Package: libopm-core1-dbg
Section: debug
Architecture: any
Multi-Arch: foreign
Provides: libopm-core-dbg
Depends: libopm-core1 (= ${binary:Version}), ${misc:Depends}
Description: OPM core library -- debug symbols
The OPM core library is the core library within OPM and contains
* Eclipse deck input and preprosessing
* Fluid properties (basic PVT models and rock properties)
* Grid handling (cornerpoint grids, unstructured grid interface)
* Linear Algebra (interface to different linear solvers)
* Pressure solvers (various discretization schemes, flow models)
* Simulators (some basic examples of simulators based on sequential splitting schemes)
* Transport solvers (various discretization schemes, flow models)
* Utilities (input and output processing, unit conversion)
* Wells (basic well handling)

13
debian/copyright vendored Normal file
View File

@ -0,0 +1,13 @@
License: GPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>

2
debian/docs vendored Normal file
View File

@ -0,0 +1,2 @@
README
COPYING

1
debian/libopm-core1-dbg.install vendored Normal file
View File

@ -0,0 +1 @@
usr/lib/debug/usr/lib/*/libopmcore*.debug

5
debian/libopm-core1-dev.install vendored Normal file
View File

@ -0,0 +1,5 @@
usr/include/*
usr/lib/*/lib*.so
usr/lib/dunecontrol/*
usr/lib/*/pkgconfig/*
usr/share/cmake/*

1
debian/libopm-core1-doc.install vendored Normal file
View File

@ -0,0 +1 @@
usr/share/doc/*

1
debian/libopm-core1.install vendored Normal file
View File

@ -0,0 +1 @@
usr/lib/*/lib*.so.*

28
debian/rules vendored Executable file
View File

@ -0,0 +1,28 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
override_dh_auto_clean:
dh_auto_clean --buildsystem=cmake
override_dh_auto_build:
dh_auto_build --buildsystem=cmake
override_dh_auto_configure:
dh_auto_configure --buildsystem=cmake -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_DOCDIR=share/doc/libopm-core1-doc
override_dh_auto_install:
dh_auto_install -- install-html
override_dh_installdocs:
dh_installdocs --link-doc=libopm-core1-doc

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
1.0