-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ham/antscope2: Added (Antenna Analyzer).
- Loading branch information
1 parent
a0d1ab6
commit f1e5fb7
Showing
7 changed files
with
191 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
AntScope2 RigExpert antenna analyzers | ||
|
||
The AntScope2 software is designed to support various models of | ||
RigExpert antenna analyzers. | ||
-See the characteristics of your antenna in more detail | ||
-Share measurement results | ||
|
||
Homepage: https://rigexpert.com/products/software/antscope2/ | ||
|
||
|
||
Make sure the user account is a member of the dialout group! |
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,110 @@ | ||
#!/bin/bash | ||
# Slackbuild for antscope2 | ||
# Brian Cox <[email protected]> | ||
|
||
# Copyright 2024 | ||
# All rights reserved. | ||
# | ||
# Redistribution and use of this script, with or without modification, is | ||
# permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of this script must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED | ||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
cd $(dirname $0) ; CWD=$(pwd) | ||
|
||
SRCNAM=AntScope2 | ||
PRGNAM=antscope2 | ||
VERSION=${VERSION:-1.2.6} | ||
COMMIT=${COMMIT:-19323af9b8157dff4c260f516d8bda4b05e6a8a9} | ||
BUILD=${BUILD:-1} | ||
TAG=${TAG:-_SBo} | ||
PKGTYPE=${PKGTYPE:-tgz} | ||
|
||
if [ -z "$ARCH" ]; then | ||
case "$( uname -m )" in | ||
i?86) ARCH=i586 ;; | ||
arm*) ARCH=arm ;; | ||
*) ARCH=$( uname -m ) ;; | ||
esac | ||
fi | ||
|
||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then | ||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" | ||
exit 0 | ||
fi | ||
|
||
TMP=${TMP:-/tmp/SBo} | ||
PKG=$TMP/package-$PRGNAM | ||
OUTPUT=${OUTPUT:-/tmp} | ||
|
||
set -e | ||
|
||
rm -rf $PKG | ||
mkdir -p $TMP $PKG $OUTPUT | ||
cd $TMP | ||
rm -rf $SRCNAM-$COMMIT | ||
tar -xvf $CWD/$COMMIT.tar.gz | ||
cd $SRCNAM-$COMMIT | ||
|
||
chown -R root:root . | ||
find -L . \ | ||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ | ||
-o -perm 511 \) -exec chmod 755 {} \; -o \ | ||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ | ||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; | ||
|
||
qmake PREFIX="$PKG/usr" AntScope.pro | ||
make | ||
|
||
mkdir -p $PKG/usr/share/pixmaps | ||
install -m 644 AntScope2.ico $PKG/usr/share/pixmaps/ | ||
mkdir -p $PKG/usr/share/applications | ||
install -m 644 $CWD/antscope2.desktop $PKG/usr/share/applications | ||
mkdir -p $PKG/usr/bin | ||
cd ./build/release | ||
install -m 755 $SRCNAM $PKG/usr/bin/$SRCNAM | ||
cd ../../ | ||
mkdir -p $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage.qm $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage.ts $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_ja.qm $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_ja.ts $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_ru.qm $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_ru.ts $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_uk.qm $PKG/usr/share/$PRGNAM | ||
install -m 644 QtLanguage_uk.ts $PKG/usr/share/$PRGNAM | ||
install -m 644 cables.txt $PKG/usr/share/$PRGNAM | ||
install -m 644 itu-regions.txt $PKG/usr/share/$PRGNAM | ||
install -m 644 itu-regions-defaults.txt $PKG/usr/share/$PRGNAM | ||
|
||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | ||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true | ||
|
||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION | ||
cp -a \ | ||
LICENSE.txt \ | ||
$PKG/usr/doc/$PRGNAM-$VERSION | ||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild | ||
|
||
find $PKG/usr/doc -name "Makefile" -exec rm {} \; | ||
find $PKG/usr/doc -type f -exec chmod 644 {} \; | ||
|
||
mkdir -p $PKG/install | ||
cat $CWD/slack-desc > $PKG/install/slack-desc | ||
cat $CWD/doinst.sh > $PKG/install/doinst.sh | ||
cat $CWD/douninst.sh > $PKG/install/douninst.sh | ||
|
||
cd $PKG | ||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |
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,8 @@ | ||
[Desktop Entry] | ||
Name=AntScope2 | ||
Comment=RigExpert AntScope2 Antenna Analyzer | ||
Exec=AntScope2 | ||
Icon=/usr/share/pixmaps/AntScope2.ico | ||
StartupNotify=true | ||
Type=Application | ||
Categories=HamRadio; |
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 @@ | ||
PRGNAM="antscope2" | ||
VERSION="1.2.6" | ||
HOMEPAGE="https://rigexpert.com/products/software/antscope2/" | ||
DOWNLOAD="https://github.com/rigexpert/AntScope2/archive/19323af9b8157dff4c260f516d8bda4b05e6a8a9.tar.gz" | ||
MD5SUM="f2b9188a291c7189c4ebbd92460d1c94" | ||
DOWNLOAD_x86_64="" | ||
MD5SUM_x86_64="" | ||
REQUIRES="" | ||
MAINTAINER="Brian Cox" | ||
EMAIL="[email protected]" |
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,18 @@ | ||
if [ ! -d /usr/bin/Resources ]; then | ||
mkdir -p /usr/bin/Resources | ||
ln -sf /usr/share/antscope2/QtLanguage.qm /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage.ts /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_ja.qm /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_ja.ts /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_ru.qm /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_ru.ts /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_uk.qm /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/QtLanguage_uk.ts /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/cables.txt /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/itu-regions-defaults.txt /usr/bin/Resources/ | ||
ln -sf /usr/share/antscope2/itu-regions.txt /usr/bin/Resources/ | ||
fi | ||
|
||
if [ -x /usr/bin/update-desktop-database ]; then | ||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 | ||
fi |
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,15 @@ | ||
# Remove data generated by doinst.sh | ||
if [ -d /usr/bin/Resources ]; then | ||
rm /usr/bin/Resources/QtLanguage.qm | ||
rm /usr/bin/Resources/QtLanguage.ts | ||
rm /usr/bin/Resources/QtLanguage_ja.qm | ||
rm /usr/bin/Resources/QtLanguage_ja.ts | ||
rm /usr/bin/Resources/QtLanguage_ru.qm | ||
rm /usr/bin/Resources/QtLanguage_ru.ts | ||
rm /usr/bin/Resources/QtLanguage_uk.qm | ||
rm /usr/bin/Resources/QtLanguage_uk.ts | ||
rm /usr/bin/Resources/cables.txt | ||
rm /usr/bin/Resources/itu-regions-defaults.txt | ||
rm /usr/bin/Resources/itu-regions.txt | ||
rmdir /usr/bin/Resources | ||
fi |
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,19 @@ | ||
# HOW TO EDIT THIS FILE: | ||
# The "handy ruler" below makes it easier to edit a package description. | ||
# Line up the first '|' above the ':' following the base package name, and | ||
# the '|' on the right side marks the last column you can put a character in. | ||
# You must make exactly 11 lines for the formatting to be correct. It's also | ||
# customary to leave one space after the ':' except on otherwise blank lines. | ||
|
||
|-----handy-ruler------------------------------------------------------| | ||
antscope2: antscope2 (RigExpert antenna analyzers) | ||
antscope2: | ||
antscope2: The AntScope2 software is designed to support various models of | ||
antscope2: RigExpert antenna analyzers. | ||
antscope2: -See the characteristics of your antenna in more detail | ||
antscope2: -Share measurement results | ||
antscope2: | ||
antscope2: Homepage: https://rigexpert.com/products/software/antscope2/ | ||
antscope2: | ||
antscope2: | ||
antscope2: |