-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install pkgconfig file & finish up debian configs
- Loading branch information
Showing
5 changed files
with
35 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ libmbe (1.3.0) bionic; urgency=low | |
|
||
* Initial upload! | ||
|
||
-- Jared Szechy <[email protected]> Tue, 26 Jun 2018 20:04:17 -0500 | ||
-- Jared Szechy <[email protected]> Wed, 27 Jun 2018 23:00:00 -0400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,26 +5,30 @@ Maintainer: Jared Szechy <[email protected]> | |
Build-Depends: debhelper (>= 9), cmake | ||
Standards-Version: 4.1.4 | ||
Homepage: https://github.com/szechyjs/mbelib | ||
Vcs-Git: https://github.com/szechyjs/mbelib.git | ||
Vcs-Browser: https://github.com/szechyjs/mbelib | ||
|
||
Package: libmbe-dev | ||
Section: libdevel | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: libmbe1 (= ${binary:Version}), ${misc:Depends} | ||
Description: P25 Phase 1 and ProVoice vocoder: Headers | ||
Description: P25 Phase 1 and ProVoice vocoder - development kit | ||
libMBE supports the 7200x4400 bit/s codec used in P25 Phase 1, | ||
the 7100x4400 bit/s codec used in ProVoice and the "Half Rate" | ||
3600x2250 bit/s vocoder used in various radio systems. | ||
. | ||
This package contains the development files for libmbe. | ||
|
||
Package: libmbe1 | ||
Section: libs | ||
Architecture: any | ||
Multi-Arch: same | ||
Pre-Depends: ${misc:Pre-Depends} | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: P25 Phase 1 and ProVoice vocoder | ||
|
||
Package: libmbe-dbg | ||
Section: debug | ||
Priority: optional | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: libmbe1 (= ${binary:Version}), ${misc:Depends} | ||
Description: P25 Phase 1 and ProVoice vocoder: Debug | ||
Description: P25 Phase 1 and ProVoice vocoder - runtime library | ||
libMBE supports the 7200x4400 bit/s codec used in P25 Phase 1, | ||
the 7100x4400 bit/s codec used in ProVoice and the "Half Rate" | ||
3600x2250 bit/s vocoder used in various radio systems. | ||
. | ||
This package contains the libmbe library used by applications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
usr/include | ||
usr/lib/*/*.so | ||
usr/lib/*/*.a | ||
usr/lib/*/*.a | ||
usr/lib/*/pkgconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
libdir=@CMAKE_INSTALL_FULL_LIBDIR@ | ||
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ | ||
|
||
Name: libMBE | ||
Description: P25 Phase 1 and ProVoice vocoder | ||
Version: 1.3.0 | ||
|
||
Libs: -L${libdir} -lmbe | ||
Libs.private: -lm | ||
Cflags: -I${includedir} |