[Update] 2025-02-06 : Version bump to 2.0.0_Linux
クラウド・ストレージ MEGA のコマンドライン・ユーティリティ MEGAcmd-2.0.0_Linux
Upstream URL : https://github.com/meganz/MEGAcmd
screen shot
MEGAcmd.SlackBuild
[code]
#!/bin/bash # Slackware build script for <appname> # Copyright <year> <you> <where you live> # 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. # |-----------------------------------------------------------------| # ### ChangeLog ### # 2025-02-06 - Major version bump to "2.0.0" with cmake and vcppkg build system # SDL: "8.3.1" # cd $(dirname $0) ; CWD=$(pwd) PRGNAM=MEGAcmd VERSION=${VERSION:-2.0.0} SDK=${SDK:-8.3.1} FFMPEG6_PATCHREV=${FFMPEG6_PATCHREV:-1.7.0} BUILD=${BUILD:-1} TAG=${TAG:-jw} PKGTYPE=${PKGTYPE:-txz} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; arm*) ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information # could be useful to other scripts. 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} if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" elif [ "$ARCH" = "aarch64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" fi set -e # Exit on most errors rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-${VERSION}_Linux tar xvf $CWD/$PRGNAM-${VERSION}_Linux.tar.gz cd $PRGNAM-${VERSION}_Linux/sdk tar --strip-components=1 -xvf $CWD/sdk-$SDK.tar.gz cd .. # Apply patch for FFmpeg6 ; This patch also works against FFmpeg7 patch -p1 < $CWD/megacmd-${FFMPEG6_PATCHREV}_ffmpeg6.patch 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 {} \; cd $TMP rm -rf vcpkg # Now.. we will use microsoft VCPKG build system for MEGAsync desktop apps git clone https://github.com/microsoft/vcpkg cd $PRGNAM-${VERSION}_Linux CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" export CXXFLAGS+=' -DNDEBUG' #CONFIGURE cmake -DVCPKG_ROOT=$TMP/vcpkg -B build -S $TMP/$PRGNAM-${VERSION}_Linux \ -DCMAKE_BUILD_TYPE=Release #BUILD cd build make $NUMJOBS #INSTALL make install/strip DESTDIR=$PKG cd .. # Fix installdir of megacmd_completion.sh rm -rf $PKG/etc install -Dm644 src/client/megacmd_completion.sh $PKG/usr/share/bash-completion/completions/megacmd install -d "$PKG/usr/lib${LIBDIRSUFFIX}" # Do Not overwrite *.so of default ffmpeg-7.x's libraries. rm $PKG/opt/megacmd/lib/*.so # Now move ffmpeg related libs to STD lib64 dir mv $PKG/opt/megacmd/lib/* $PKG/usr/lib${LIBDIRSUFFIX}/ install -D -m644 $TMP/$PRGNAM-${VERSION}_Linux/LICENSE -t "$PKG/usr/share/licenses/megacmd" rm -d "$PKG/opt"{/megacmd{/lib,},} # Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la # Strip binaries and libraries - this can be done with 'make install-strip' # in many source trees, and that's usually acceptable, if not, use this: 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 # Remove perllocal.pod and other special files that don't need to be installed, # as they will overwrite what's already on the system. If this is not needed, # remove it from the script. find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true # Copy program documentation and other files into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ *.txt LICENSE README.md UserGuide.md \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/megacmd-${FFMPEG6_PATCHREV}_ffmpeg6.patch > $PKG/usr/doc/$PRGNAM-$VERSION/megacmd-${FFMPEG6_PATCHREV}_ffmpeg6.patch # Copy the slack-desc (and a custom doinst.sh if necessary) into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc # Make the package cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |
MEGAcmd.info
slack-desc
[code]
PRGNAM="MEGAcmd" VERSION="2.0.0" HOMEPAGE="https://github.com/meganz/MEGAcmd" DOWNLOAD="https://github.com/meganz/MEGAcmd/archive/2.0.0_Linux/MEGAcmd-2.0.0_Linux.tar.gz \ https://github.com/meganz/sdk/archive/v8.3.1/sdk-8.3.1.tar.gz" MD5SUM="3a10c59014cefb8e8ec2ae7cf6a26cb6 \ 8e2c0573310cdb99294626b0ca3e3438" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="FreeImage libmediainfo" MAINTAINER="" EMAIL="" |
slack-desc
[code]
# 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 ':'. |-----handy-ruler------------------------------------------------------| MEGAcmd: MEGAcmd (MEGAcmd) MEGAcmd: URL : https://github.com/meganz/MEGAcmd MEGAcmd: MEGAcmd: MEGAcmd provides non UI access to MEGA services. It intends to offer MEGAcmd: all the functionality with your MEGA account via commands. MEGAcmd: It features synchronization , backup of local folders into your MEGA MEGAcmd: account and a webdav/streaming server MEGAcmd: MEGAcmd: MEGAcmd: MEGAcmd: |
megacmd-1.7.0_ffmpeg6.patch
[code]
--- MEGAcmd-1.7.0_Linux/sdk/src/gfx/freeimage.cpp 2024-05-23 05:35:56.462093962 +0900 +++ MEGAcmd-1.7.0_Linux.New/sdk/src/gfx/freeimage.cpp 2024-05-23 05:38:41.790152966 +0900 @@ -209,12 +209,6 @@ #ifdef HAVE_FFMPEG -#ifdef AV_CODEC_CAP_TRUNCATED -#define CAP_TRUNCATED AV_CODEC_CAP_TRUNCATED -#else -#define CAP_TRUNCATED CODEC_CAP_TRUNCATED -#endif - const char *GfxProviderFreeImage::supportedformatsFfmpeg() { return ".264.265.3g2.3gp.3gpa.3gpp.3gpp2.mp3" @@ -330,10 +324,6 @@ // Force seeking to key frames formatContext->seek2any = false; - if (decoder->capabilities & CAP_TRUNCATED) - { - codecContext->flags |= CAP_TRUNCATED; - } AVPixelFormat sourcePixelFormat = static_cast<AVPixelFormat>(codecParm->format); AVPixelFormat targetPixelFormat = AV_PIX_FMT_BGR24; //raw data expected by freeimage is in this format |
===