#!/bin/bash # Copyright 2009, Jonathan Larsen (agentc0re), SLC, UT # Contact Info: agentc0re 'AT' learnix 'DOT' net # All rights reserved. # frei0r.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. # # frei0r.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="frei0r" PACKAGE_EXT="gz" VERSION=${VERSION:=1.6.1} BUILD=${BUILD:=1} if [ -f ~/.slackbuildrc ]; then . ~/.slackbuildrc elif [ -f ../../runtime/slackbuildrc ]; then . ../../runtime/slackbuildrc fi check_required SRC="$PACKAGE-plugins-$VERSION.tar.$PACKAGE_EXT" URL="https://files.dyne.org/frei0r/releases/$SRC" get_source $SRC $URL unpack_source $SRC $PACKAGE-plugins-$VERSION sed -i -e '/set(CMAKE_C_FLAGS/d' \ -e "/LIBDIR.*frei0r-1/s:lib:lib${LIBDIRSUFFIX}:" \ -e "/set.*libdir/s:\/lib:\/lib${LIBDIRSUFFIX}:" \ -e "/install.*FILES/s:lib\/pkgconfig:lib${LIBDIRSUFFIX}\/pkgconfig:" CMakeLists.txt mkdir -vp build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DLIBDIR=${LIBDIR}/frei0r-1 \ -DOpenCV_DIR=/usr/share/OpenCV \ -Wno-dev .. && make -j5 make install DESTDIR=$PKG cd .. mkdir -p $DOCS cp -a AUTHORS.txt COPYING* ChangeLog.txt INSTALL* README.txt TODO.txt $DOCS # Remove misplaced docs, thanks to Niki Kovacs rm -fR $PKG/usr/share fixup_package $PKG # Clean up the extra stuff: set +u if [ "$1" = "--cleanup" ]; then rm -rf $TMP/$PACKAGE-$VERSION rm -rf $PKG fi