-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdeb-ceres-solver.py
More file actions
executable file
·44 lines (38 loc) · 1.07 KB
/
deb-ceres-solver.py
File metadata and controls
executable file
·44 lines (38 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
from deblib import *
# General config
set_name("libceres1")
set_homepage("http://ceres-solver.org/")
#Download it
pkgversion = "1.12.0"
git_clone("https://ceres-solver.googlesource.com/ceres-solver", branch=pkgversion)
set_version(pkgversion)
add_version_suffix("-deb3")
set_debversion(1)
# Remove git
pack_source()
create_debian_dir()
build_depends.append("libgflags-dev")
build_depends.append("libeigen3-dev")
build_depends.append("libgoogle-glog-dev")
#Use the existing COPYING file
copy_license()
#Create the changelog (no messages - dummy)
create_dummy_changelog()
# Create rules file
build_config_cmake(cmake_opts=[
"-DCMAKE_C_FLAGS=-fPIC",
"-DCMAKE_CXX_FLAGS=-fPIC",
"-DBUILD_EXAMPLES=OFF",
"-DBUILD_SHARED_LIBS=ON"])
install_usr_dir_to_package("usr/include", "dev")
write_rules()
#Create control file
intitialize_control()
control_add_package(description="Ceres solver")
control_add_package("dev",
arch_specific=False,
depends=[depends_main_package()],
description="Ceres solver (development files)")
#Build it
commandline_interface()