Package Details: gstfs-ng 1.1.1-1

Git Clone URL: https://aur.archlinux.org/gstfs-ng.git (read-only, click to copy)
Package Base: gstfs-ng
Description: A FUSE-based file system for dynamic gstreamer-based transcoding
Upstream URL: https://github.com/rtyle/gstfs-ng
Licenses: LGPL-2.0-or-later, LGPL-3.0-or-later
Submitter: SmashedSqwurl
Maintainer: SmashedSqwurl (dreieck)
Last Packager: SmashedSqwurl
Votes: 0
Popularity: 0.000000
First Submitted: 2017-04-01 02:45 (UTC)
Last Updated: 2024-12-10 23:47 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

SmashedSqwurl commented on 2024-12-10 23:48 (UTC)

Thanks @dreieck. I've updated the PKGBUILD and added you as a co-maintainer since I don't actively use this package anymore.

dreieck commented on 2024-12-09 15:24 (UTC) (edited on 2024-12-09 15:27 (UTC) by dreieck)

Build issues fixed in version 1.1.1.

Updated PKGBUILD, which also moves boost to makedepends and makes the license identifier SPDX compliant, and installs the README and COPYING (just as a "service" to the user, not necessary):

# Maintainer:  Brett Dutro <brett.dutro@gmail.com>
# Contributor: dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: Brett Dutro <brett.dutro@gmail.com>

pkgname=gstfs-ng
pkgver=1.1.1
pkgrel=1
pkgdesc="A FUSE-based file system for dynamic gstreamer-based transcoding"
arch=('x86_64')
url="https://github.com/rtyle/gstfs-ng"
license=('LGPL-3.0-or-later' 'LGPL-2.0-or-later') # According to `COPYING`: "If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.". And I found no such specification.
depends=('fuse' 'boost-libs' 'gstreamer')
makedepends=('boost')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rtyle/gstfs-ng/archive/$pkgver.tar.gz")
sha256sums=('413ed75b91307a6480449f627f6f4057390391a5aa05b5d69f6326b80789b017')

build() {
    cd "$pkgname-$pkgver"
    make
}

package() {
    cd "$pkgname-$pkgver"
    install -D gstfs-ng.8 "${pkgdir}"/usr/share/man/man8/gstfs-ng.8
    install -D gstfs-ng.monitor "${pkgdir}"/usr/bin/gstfs-ng.monitor
    install -D gstfs-ng "${pkgdir}"/usr/bin/gstfs-ng
    ln -s /usr/bin/gstfs-ng "${pkgdir}"/usr/bin/mount.gstfs-ng

    install -D -t "${pkgdir}/usr/share/doc/gstfs-ng"         README
    install -D -t "${pkgdir}/usr/share/licenses/${pkgname}"  COPYING
}

dreieck commented on 2024-12-08 17:30 (UTC)

Build fails for me with src/mmap_allocator.cpp:227:42: error: ‘using allocator_t = class boost::interprocess::allocator<unsigned char, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::null_mutex_family>, boost::interprocess::iset_index> >’ {aka ‘class boost::interprocess::allocator<unsigned char, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::null_mutex_family>, boost::interprocess::iset_index> >’} has no member named ‘destroy’ and subsequent errors.

↗ Upstream issue report.

Regards!

dreieck commented on 2024-12-08 17:29 (UTC)

Ahoj,

boost-libs are dependencies, but is boost really a dependency, or is it sufficient to put it in makedepends?

Regards!