]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - libsolv/libsolv.nm
libsolv: Remove some tools we don't need and put the rest into an extra package.
[people/ms/ipfire-3.x.git] / libsolv / libsolv.nm
CommitLineData
1fc81377 1###############################################################################
802ea3af
MT
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
1fc81377
MT
4###############################################################################
5
802ea3af
MT
6name = libsolv
7version = 0.0.0
5cc0c013 8git_ver = c02d759
38d5b746 9release = 5.git%{git_ver}
1fc81377 10
802ea3af
MT
11maintainer = Michael Tremer <michael.tremer@ipfire.org>
12groups = System/Libraries
13url = https://github.com/openSUSE/libsolv
14license = BSD
15summary = A library for solving package dependencies.
1fc81377 16
802ea3af 17description
1fc81377
MT
18 A library for solving package dependencies by using a SAT
19 resolver written in C++.
802ea3af
MT
20end
21
22thisapp = %{name}-%{version}-%{git_ver}
23
24source_dl =
1fc81377 25
802ea3af
MT
26build
27 requires
28 gcc-c++
29 cmake
30 db4-devel
31 expat-devel
32 zlib-devel
33 end
1fc81377 34
802ea3af 35 prepare_cmds
802ea3af
MT
36 # Make sure that libsatsolverext is linked properly to all needed
37 # libraries.
38 echo "TARGET_LINK_LIBRARIES(libsolvext libsolv \${EXPAT_LIBRARY} \${ZLIB_LIBRARY})" \
39 >> ext/CMakeLists.txt
802ea3af 40 end
1fc81377 41
802ea3af
MT
42 build
43 mkdir build
5cc0c013 44 cd build && cmake .. \
802ea3af 45 -DCMAKE_INSTALL_PREFIX=/usr \
38d5b746
MT
46 -DCMAKE_BUILD_TYPE=RelWithDebInfo \
47 -DENABLE_PERL=0 \
48 -DENABLE_PYTHON=0 \
49 -DENABLE_RUBY=0
802ea3af
MT
50 make %{PARALELLISMFLAGS}
51 end
1fc81377 52
802ea3af
MT
53 install
54 cd build && make install DESTDIR=%{BUILDROOT}
38d5b746 55 rm -vf %{BUILDROOT}%{bindir}/{,test}solv
802ea3af
MT
56 end
57end
1fc81377 58
802ea3af
MT
59packages
60 package %{name}
1f9bc2f0 61
38d5b746
MT
62 package %{name}-tools
63 summary = Tools to manipulate .solv files.
64
65 requires
66 bzip2
67 coreutils
68 gzip
69 end
70
71 files
72 %{bindir}
73 end
74 end
75
802ea3af
MT
76 package %{name}-devel
77 template DEVEL
78 end
1f9bc2f0
MT
79
80 package %{name}-debuginfo
81 template DEBUGINFO
82 end
802ea3af 83end