#!/bin/bash # # rtl_433.SlackBuild is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or any later version. # # rtl_433.SlackBuild is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 59 Temple # Place - Suite 330, Boston, MA 02111-1307, USA # # default settings PACKAGE="rtl_433" PACKAGE_EXT="gz" VERSION=${VERSION:=21.12} BUILD=${BUILD:=1} if [ -f ~/.slackbuildrc ]; then . ~/.slackbuildrc elif [ -f ../../runtime/slackbuildrc ]; then . ../../runtime/slackbuildrc fi check_required SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT" URL="https://github.com/merbanan/rtl_433/archive/refs/tags/$VERSION.tar.$PACKAGE_EXT" get_source $SRC $URL unpack_source $SRC $PACKAGE-$VERSION mkdir -p build cd build cmake \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -Wno-dev \ -DCMAKE_BUILD_TYPE=Release .. make ${NUMJOBS} make install DESTDIR=$PKG cd .. # Move man pages and configuration mv $PKG/usr/share/man $PKG/usr mv $PKG/usr/etc $PKG rmdir $PKG/usr/share mkdir -p $DOCS cp -a AUTHORS CHANGELOG.md COPYING README* docs/*.md examples $DOCS chmod 644 $DOCS/examples/* cp $CWD/doinst.sh.in $CWD/doinst.sh # Let's not clobber config files cd $PKG/etc/rtl_433 for i in * ; do mv $i $i.new echo "config etc/rtl_433/$i.new" >> $CWD/doinst.sh done cd - fixup_package $PKG rm -f $CWD/doinst.sh # Clean up the extra stuff: set +u if [ "$1" = "--cleanup" ]; then rm -rf $TMP/$PACKAGE-$VERSION rm -rf $PKG fi