mirror of https://github.com/wb2osz/direwolf.git
Clean up Linux install locations.
This commit is contained in:
parent
78283e1991
commit
9febac9696
113
Makefile.linux
113
Makefile.linux
|
@ -210,7 +210,7 @@ endif
|
||||||
# If you compile with the RPi 2 specific options above and try to run it on the RPi
|
# If you compile with the RPi 2 specific options above and try to run it on the RPi
|
||||||
# model B (pre version 2), it will die with "illegal instruction."
|
# model B (pre version 2), it will die with "illegal instruction."
|
||||||
#
|
#
|
||||||
# Dire Wolf is known to work on the BeagleBone, CubieBoard2, etc.
|
# Dire Wolf is known to work on the BeagleBone, CubieBoard2, CHIP, etc.
|
||||||
# The best compiler options will depend on the specific type of processor
|
# The best compiler options will depend on the specific type of processor
|
||||||
# and the compiler target defaults.
|
# and the compiler target defaults.
|
||||||
#
|
#
|
||||||
|
@ -292,12 +292,14 @@ LDFLAGS += -lhamlib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
# Should enabling of this feature be strongly encouraged or
|
||||||
|
# is it quite specialized and of interest to a small audience?
|
||||||
# If, for some reason, can obtain the libudev-dev package, or
|
# If, for some reason, can obtain the libudev-dev package, or
|
||||||
# don't want to install it, comment out the next 3 lines.
|
# don't want to install it, comment out the next 3 lines.
|
||||||
|
|
||||||
ifeq ($(wildcard /usr/include/libudev.h),)
|
#ifeq ($(wildcard /usr/include/libudev.h),)
|
||||||
$(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" )
|
#$(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" )
|
||||||
endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
# Enable cm108 PTT support if libudev header file is present.
|
# Enable cm108 PTT support if libudev header file is present.
|
||||||
|
@ -541,6 +543,7 @@ direwolf.conf : generic.conf
|
||||||
# Eventually I'd like to have targets here to build the .DEB and .RPM packages.
|
# Eventually I'd like to have targets here to build the .DEB and .RPM packages.
|
||||||
|
|
||||||
INSTALLDIR := /usr/local
|
INSTALLDIR := /usr/local
|
||||||
|
#INSTALLDIR := /usr
|
||||||
|
|
||||||
# Command to "install" to system directories. Use "ginstall" for Mac.
|
# Command to "install" to system directories. Use "ginstall" for Mac.
|
||||||
|
|
||||||
|
@ -566,14 +569,14 @@ else
|
||||||
endif
|
endif
|
||||||
@echo 'Name=Dire Wolf' >> $@
|
@echo 'Name=Dire Wolf' >> $@
|
||||||
@echo 'Comment=APRS Soundcard TNC' >> $@
|
@echo 'Comment=APRS Soundcard TNC' >> $@
|
||||||
@echo 'Icon=/usr/share/direwolf/dw-icon.png' >> $@
|
@echo 'Icon=$(INSTALLDIR)/share/direwolf/dw-icon.png' >> $@
|
||||||
@echo "Path=$(HOME)" >> $@
|
@echo "Path=$(HOME)" >> $@
|
||||||
@echo '#Terminal=true' >> $@
|
@echo '#Terminal=true' >> $@
|
||||||
@echo 'Categories=HamRadio' >> $@
|
@echo 'Categories=HamRadio' >> $@
|
||||||
@echo 'Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25' >> $@
|
@echo 'Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25' >> $@
|
||||||
|
|
||||||
|
|
||||||
# Installation into /usr/local/...
|
# Installation into $(INSTALLDIR), usually /usr/local/... or /usr/...
|
||||||
# Needs to be run as root or with sudo.
|
# Needs to be run as root or with sudo.
|
||||||
|
|
||||||
|
|
||||||
|
@ -583,40 +586,40 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
||||||
# Applications, not installed with package manager, normally go in /usr/local/bin.
|
# Applications, not installed with package manager, normally go in /usr/local/bin.
|
||||||
# /usr/bin is used instead when installing from .DEB or .RPM package.
|
# /usr/bin is used instead when installing from .DEB or .RPM package.
|
||||||
#
|
#
|
||||||
$(INSTALL) direwolf $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 direwolf $(INSTALLDIR)/bin/direwolf
|
||||||
$(INSTALL) decode_aprs $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 decode_aprs $(INSTALLDIR)/bin/decode_aprs
|
||||||
$(INSTALL) text2tt $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 text2tt $(INSTALLDIR)/bin/text2tt
|
||||||
$(INSTALL) tt2text $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 tt2text $(INSTALLDIR)/bin/tt2text
|
||||||
$(INSTALL) ll2utm $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 ll2utm $(INSTALLDIR)/bin/ll2utm
|
||||||
$(INSTALL) utm2ll $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 utm2ll $(INSTALLDIR)/bin/utm2ll
|
||||||
$(INSTALL) aclients $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 aclients $(INSTALLDIR)/bin/aclients
|
||||||
$(INSTALL) log2gpx $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 log2gpx $(INSTALLDIR)/bin/log2gpx
|
||||||
$(INSTALL) gen_packets $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 gen_packets $(INSTALLDIR)/bin/gen_packets
|
||||||
$(INSTALL) atest $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 atest $(INSTALLDIR)/bin/atest
|
||||||
$(INSTALL) ttcalc $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 ttcalc $(INSTALLDIR)/bin/ttcalc
|
||||||
$(INSTALL) kissutil $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 kissutil $(INSTALLDIR)/bin/kissutil
|
||||||
$(INSTALL) cm108 $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 cm108 $(INSTALLDIR)/bin/cm108
|
||||||
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 dwespeak.sh $(INSTALLDIR)/bin/dwspeak.sh
|
||||||
#
|
#
|
||||||
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
|
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
|
||||||
#
|
#
|
||||||
$(INSTALL) telemetry-toolkit/telem-balloon.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-balloon.pl $(INSTALLDIR)/bin/telem-balloon.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-bits.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-bits.pl $(INSTALLDIR)/bin/telem-bits.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-data.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-data.pl $(INSTALLDIR)/bin/telem-data.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-data91.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-data91.pl $(INSTALLDIR)/bin/telem-data91.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-eqns.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-eqns.pl $(INSTALLDIR)/bin/telem-eqns.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-parm.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-parm.pl $(INSTALLDIR)/bin/telem-parm.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-seq.sh $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-seq.sh $(INSTALLDIR)/bin/telem-seq.sh
|
||||||
$(INSTALL) telemetry-toolkit/telem-unit.pl $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-unit.pl $(INSTALLDIR)/bin/telem-unit.pl
|
||||||
$(INSTALL) telemetry-toolkit/telem-volts.py $(INSTALLDIR)/bin
|
$(INSTALL) -D --mode=755 telemetry-toolkit/telem-volts.py $(INSTALLDIR)/bin/telem-volts.py
|
||||||
#
|
#
|
||||||
# Misc. data such as "tocall" to system mapping.
|
# Misc. data such as "tocall" to system mapping.
|
||||||
#
|
#
|
||||||
$(INSTALL) -D --mode=644 tocalls.txt /usr/share/direwolf/tocalls.txt
|
$(INSTALL) -D --mode=644 tocalls.txt $(INSTALLDIR)/share/direwolf/tocalls.txt
|
||||||
$(INSTALL) -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
|
$(INSTALL) -D --mode=644 symbols-new.txt $(INSTALLDIR)/share/direwolf/symbols-new.txt
|
||||||
$(INSTALL) -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
|
$(INSTALL) -D --mode=644 symbolsX.txt $(INSTALLDIR)/share/direwolf/symbolsX.txt
|
||||||
$(INSTALL) -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
|
$(INSTALL) -D --mode=644 dw-icon.png $(INSTALLDIR)/share/direwolf/dw-icon.png
|
||||||
$(INSTALL) -D --mode=644 direwolf.desktop /usr/share/applications/direwolf.desktop
|
$(INSTALL) -D --mode=644 direwolf.desktop $(INSTALLDIR)/share/applications/direwolf.desktop
|
||||||
#
|
#
|
||||||
# Documentation. Various plain text files and PDF.
|
# Documentation. Various plain text files and PDF.
|
||||||
#
|
#
|
||||||
|
@ -625,6 +628,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
||||||
$(INSTALL) -D --mode=644 LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt
|
$(INSTALL) -D --mode=644 LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt
|
||||||
#
|
#
|
||||||
# ./README.md is an overview for the project main page.
|
# ./README.md is an overview for the project main page.
|
||||||
|
# Maybe we could stick it in some other place.
|
||||||
# doc/README.md contains an overview of the PDF file contents and is more useful here.
|
# doc/README.md contains an overview of the PDF file contents and is more useful here.
|
||||||
#
|
#
|
||||||
$(INSTALL) -D --mode=644 doc/README.md $(INSTALLDIR)/share/doc/direwolf/README.md
|
$(INSTALL) -D --mode=644 doc/README.md $(INSTALLDIR)/share/doc/direwolf/README.md
|
||||||
|
@ -659,17 +663,17 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
||||||
#
|
#
|
||||||
# "man" pages
|
# "man" pages
|
||||||
#
|
#
|
||||||
$(INSTALL) -D --mode=644 man1/aclients.1 $(INSTALLDIR)/man/man1/aclients.1
|
$(INSTALL) -D --mode=644 man1/aclients.1 $(INSTALLDIR)/share/man/man1/aclients.1
|
||||||
$(INSTALL) -D --mode=644 man1/atest.1 $(INSTALLDIR)/man/man1/atest.1
|
$(INSTALL) -D --mode=644 man1/atest.1 $(INSTALLDIR)/share/man/man1/atest.1
|
||||||
$(INSTALL) -D --mode=644 man1/decode_aprs.1 $(INSTALLDIR)/man/man1/decode_aprs.1
|
$(INSTALL) -D --mode=644 man1/decode_aprs.1 $(INSTALLDIR)/share/man/man1/decode_aprs.1
|
||||||
$(INSTALL) -D --mode=644 man1/direwolf.1 $(INSTALLDIR)/man/man1/direwolf.1
|
$(INSTALL) -D --mode=644 man1/direwolf.1 $(INSTALLDIR)/share/man/man1/direwolf.1
|
||||||
$(INSTALL) -D --mode=644 man1/gen_packets.1 $(INSTALLDIR)/man/man1/gen_packets.1
|
$(INSTALL) -D --mode=644 man1/gen_packets.1 $(INSTALLDIR)/share/man/man1/gen_packets.1
|
||||||
$(INSTALL) -D --mode=644 man1/kissutil.1 $(INSTALLDIR)/man/man1/kissutil.1
|
$(INSTALL) -D --mode=644 man1/kissutil.1 $(INSTALLDIR)/share/man/man1/kissutil.1
|
||||||
$(INSTALL) -D --mode=644 man1/ll2utm.1 $(INSTALLDIR)/man/man1/ll2utm.1
|
$(INSTALL) -D --mode=644 man1/ll2utm.1 $(INSTALLDIR)/share/man/man1/ll2utm.1
|
||||||
$(INSTALL) -D --mode=644 man1/log2gpx.1 $(INSTALLDIR)/man/man1/log2gpx.1
|
$(INSTALL) -D --mode=644 man1/log2gpx.1 $(INSTALLDIR)/share/man/man1/log2gpx.1
|
||||||
$(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/man/man1/text2tt.1
|
$(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/share/man/man1/text2tt.1
|
||||||
$(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
|
$(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/share/man/man1/tt2text.1
|
||||||
$(INSTALL) -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1
|
$(INSTALL) -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/share/man/man1/utm2ll.1
|
||||||
#
|
#
|
||||||
# Set group and mode of HID devices corresponding to C-Media USB Audio adapters.
|
# Set group and mode of HID devices corresponding to C-Media USB Audio adapters.
|
||||||
# This will allow us to use the CM108/CM119 GPIO pins for PTT.
|
# This will allow us to use the CM108/CM119 GPIO pins for PTT.
|
||||||
|
@ -684,8 +688,10 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
||||||
@echo " "
|
@echo " "
|
||||||
|
|
||||||
|
|
||||||
# Put sample configuration files in home directory.
|
# Put sample configuration & startup files in home directory.
|
||||||
# These would be done as ordinary user.
|
# This step would be done as ordinary user.
|
||||||
|
# Some people like to put the direwolf config file in /etc/ax25.
|
||||||
|
# Note that all of these are also in $(INSTALLDIR)/share/doc/direwolf/examples/.
|
||||||
|
|
||||||
# The Raspberry Pi has ~/Desktop but Ubuntu does not.
|
# The Raspberry Pi has ~/Desktop but Ubuntu does not.
|
||||||
|
|
||||||
|
@ -693,6 +699,8 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
||||||
|
|
||||||
# Version 1.4 - Add "-n" option to avoid clobbering existing, probably customized, config files.
|
# Version 1.4 - Add "-n" option to avoid clobbering existing, probably customized, config files.
|
||||||
|
|
||||||
|
# dw-start.sh is greatly improved in version 1.4.
|
||||||
|
# It was moved from isntall-rpi to install-conf because it is not just for the RPi.
|
||||||
|
|
||||||
.PHONY: install-conf
|
.PHONY: install-conf
|
||||||
install-conf : direwolf.conf
|
install-conf : direwolf.conf
|
||||||
|
@ -700,6 +708,8 @@ install-conf : direwolf.conf
|
||||||
cp -n sdr.conf ~
|
cp -n sdr.conf ~
|
||||||
cp -n telemetry-toolkit/telem-m0xer-3.txt ~
|
cp -n telemetry-toolkit/telem-m0xer-3.txt ~
|
||||||
cp -n telemetry-toolkit/telem-*.conf ~
|
cp -n telemetry-toolkit/telem-*.conf ~
|
||||||
|
chmod +x dw-start.sh
|
||||||
|
cp -n dw-start.sh ~
|
||||||
ifneq ($(wildcard $(HOME)/Desktop),)
|
ifneq ($(wildcard $(HOME)/Desktop),)
|
||||||
@echo " "
|
@echo " "
|
||||||
@echo "This will add a desktop icon on some systems."
|
@echo "This will add a desktop icon on some systems."
|
||||||
|
@ -710,14 +720,9 @@ ifneq ($(wildcard $(HOME)/Desktop),)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
# dw-start.sh is greatly improved in version 1.4.
|
|
||||||
# It should probably be part of install-conf because it is not just for the RPi.
|
|
||||||
|
|
||||||
.PHONY: install-rpi
|
.PHONY: install-rpi
|
||||||
install-rpi : dw-start.sh
|
install-rpi :
|
||||||
chmod +x dw-start.sh
|
ln -f -s $(INSTALLDIR)/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop
|
||||||
cp -n dw-start.sh ~
|
|
||||||
ln -f -s /usr/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,31 @@
|
||||||
|
#%global git_commit b2548ec58f44f4b651626757a166b9f4f18d8000
|
||||||
|
%global git_commit 37179479caf0bf36adf8c9bc0fde641884edaeac
|
||||||
|
%global git_date 20171216
|
||||||
|
|
||||||
|
%global git_short_commit %(echo %{git_commit} | cut -c -8)
|
||||||
|
%global git_suffix %{git_date}git%{git_short_commit}
|
||||||
|
|
||||||
Name: direwolf
|
Name: direwolf
|
||||||
Version: 1.1b1
|
Version: 1.5Beta
|
||||||
Release: 1%{?dist}
|
Release: 1.%{git_suffix}%{?dist}
|
||||||
Summary: Soundcard based AX.25 TNC
|
Summary: Soundcard based AX.25 TNC
|
||||||
|
|
||||||
Group: Applications/Communications
|
Group: Applications/Communications
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
URL: http://home.comcast.net/~wb2osz
|
URL: https://github.com/wb2osz/direwolf
|
||||||
Source0: http://home.comcast.net/~wb2osz/Version%201.1/direwolf-%{version}.tgz
|
#Source0: https://github.com/wb2osz/direwolf/archive/%{name}-%{version}.tar.gz
|
||||||
|
Source: %{name}-%{version}-%{git_suffix}.tgz
|
||||||
Packager: David Ranch (KI6ZHD) <dranch@trinnet.net>
|
Packager: David Ranch (KI6ZHD) <dranch@trinnet.net>
|
||||||
Distribution: RedHat Linux
|
Distribution: RedHat Linux
|
||||||
|
|
||||||
Patch0: direwolf-makefile7.patch
|
Patch0: direwolf-1.5-makefile.patch
|
||||||
|
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: alsa-lib-devel
|
BuildRequires: alsa-lib-devel
|
||||||
|
|
||||||
|
#If the gpsd and gpsd-devel packages are installed, Direwolf will add gps support
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Dire Wolf is a software "soundcard" modem/TNC and APRS encoder/decoder. It can
|
Dire Wolf is a software "soundcard" modem/TNC and APRS encoder/decoder. It can
|
||||||
|
@ -29,34 +40,64 @@ Linux AX25, SARTrack, RMS Express, and many others.
|
||||||
%patch0 -p0
|
%patch0 -p0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make -f Makefile.linux tocalls-symbols
|
|
||||||
make %{?_smp_mflags} -f Makefile.linux
|
make -f Makefile.linux
|
||||||
|
#make -f Makefile.linux tocalls-symbols
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make -f Makefile.linux install DESTDIR=$RPM_BUILD_ROOT
|
make install INSTALLDIR=$RPM_BUILD_ROOT/usr
|
||||||
make -f Makefile.linux install-conf DESTDIR=$RPM_BUILD_ROOT
|
make install-conf INSTALLDIR=$RPM_BUILD_ROOT/usr
|
||||||
|
|
||||||
# Install icon
|
# Install icon
|
||||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
|
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/direwolf/
|
||||||
cp dw-icon.png ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
|
cp dw-icon.png ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/direwolf/
|
||||||
mv symbols-new.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
mv symbols-new.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
||||||
mv symbolsX.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
mv symbolsX.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
||||||
mv tocalls.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
mv tocalls.txt ${RPM_BUILD_ROOT}%{_docdir}/%{name}/
|
||||||
desktop-file-install \
|
desktop-file-install \
|
||||||
--dir=${RPM_BUILD_ROOT}%{_datadir}/applications direwolf.desktop
|
--dir=${RPM_BUILD_ROOT}%{_datadir}/applications direwolf.desktop
|
||||||
|
#temp bug
|
||||||
|
#non echo "fixing $RPM_BUILD_ROOT/%{_bindir}/bin"
|
||||||
|
#non rm -f $RPM_BUILD_ROOT/usr/bin
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_sysconfdir}/ax25/direwolf.conf
|
%{_sysconfdir}/ax25/direwolf.conf
|
||||||
|
%{_sysconfdir}/ax25/sdr.conf
|
||||||
|
%{_sysconfdir}/ax25/telemetry-toolkit/telem-balloon.conf
|
||||||
|
%{_sysconfdir}/ax25/telemetry-toolkit/telem-m0xer-3.txt
|
||||||
|
%{_sysconfdir}/ax25/telemetry-toolkit/telem-volts.conf
|
||||||
|
%{_sysconfdir}/udev/rules.d/99-direwolf-cmedia.rules
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/pixmaps/dw-icon.png
|
%{_datadir}/pixmaps/direwolf/dw-icon.png
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{name}.desktop
|
||||||
%{_datadir}/direwolf/*
|
%{_datadir}/direwolf/*
|
||||||
%{_docdir}/%{name}/*
|
%{_docdir}/*
|
||||||
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Dec 16 2017 David Ranch <dranch@trinnet.net> - 1.5-1
|
||||||
|
- New 1.5-Beta version from Git
|
||||||
|
* Sun Apr 2 2017 David Ranch <dranch@trinnet.net> - 1.4-1
|
||||||
|
- New 1.4-Beta1 version from Git
|
||||||
|
* Sun Mar 5 2017 David Ranch <dranch@trinnet.net> - 1.4-1
|
||||||
|
- New 1.4-H Alpha version from Git version
|
||||||
|
* Fri Aug 26 2016 David Ranch <dranch@trinnet.net> - 1.4-1
|
||||||
|
- New version
|
||||||
|
* Fri May 06 2016 David Ranch <dranch@trinnet.net> - 1.3-1
|
||||||
|
- New version
|
||||||
|
* Sat Sep 12 2015 David Ranch <dranch@trinnet.net> - 1.3F-1
|
||||||
|
- New version with new features
|
||||||
|
* Sun May 10 2015 David Ranch <dranch@trinnet.net> - 1.2E-1
|
||||||
|
- New version that supports a PASSALL function
|
||||||
|
- Updated the Makefile.linux patch
|
||||||
|
* Sat Mar 21 2015 David Ranch <dranch@trinnet.net> - 1.2C-1
|
||||||
|
- changed to support different make installation variable
|
||||||
|
* Sat Feb 14 2015 David Ranch <dranch@trinnet.net> - 1.2b-1
|
||||||
|
- new spec file
|
||||||
* Sat Dec 20 2014 David Ranch <dranch@trinnet.net> - 1.1b1-1
|
* Sat Dec 20 2014 David Ranch <dranch@trinnet.net> - 1.1b1-1
|
||||||
- new spec file
|
- new spec file
|
||||||
|
|
Loading…
Reference in New Issue