Skip to content

Commit

Permalink
Intial debian package support
Browse files Browse the repository at this point in the history
  • Loading branch information
godarklight committed Jun 25, 2024
1 parent ae106fa commit c9c9d54
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@
/build/
/cmake-build-debug/
/CMakeLists.txt.user
debian/.debhelper
debian/debhelper-build-stamp
debian/files
debian/soapysdr-module-soapymiri
debian/soapysdr-module-soapymiri.debhelper.log
debian/soapysdr-module-soapymiri.substvars
obj-x86_64-linux-gnu
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
soapysdr-module-soapymiri (1.0.0-1) UNRELEASED; urgency=medium

* Initial release.

-- ericek111 <[email protected]> Sat, 22 Jun 2024 09:28:27 +1000
17 changes: 17 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Source: soapysdr-module-soapymiri
Section: hamradio
Priority: optional
Maintainer: ericek111 <[email protected]>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13), cmake, libsoapysdr-dev
Standards-Version: 4.7.0
Homepage: https://github.com/ericek111/SoapyMiri
#Vcs-Browser: https://salsa.debian.org/debian/soapyMiri
Vcs-Git: https://github.com/ericek111/SoapyMiri.git

Package: soapysdr-module-soapymiri
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, libsoapysdr0.8
Multi-Arch: same
Description: Library for Mirics-based devices
Software support for the Mirics based software defined radio devices
6 changes: 6 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/make -f
%:
dh $@ --buildsystem=cmake

override_dh_auto_configure:
dh_auto_configure --buildsystem=cmake -- -DCMAKE_BUILD_TYPE=RelWithDebInfo

0 comments on commit c9c9d54

Please sign in to comment.