Package Details: gst-transcoder-git 0.58.7e6891c-1

Git Clone URL: https://aur.archlinux.org/gst-transcoder-git.git (read-only, click to copy)
Package Base: gst-transcoder-git
Description: GStreamer Transcoding API
Upstream URL: http://gstreamer.freedesktop.org/
Licenses: LGPL
Conflicts: gst-transcoder
Provides: gst-transcoder
Submitter: lubosz
Maintainer: lubosz
Last Packager: lubosz
Votes: 3
Popularity: 0.000000
First Submitted: 2016-01-20 09:36 (UTC)
Last Updated: 2017-06-21 04:50 (UTC)

Latest Comments

haawda commented on 2017-05-23 08:59 (UTC)

I do not have any files in ${pkgdir}/usr/lib64/ do th PKGBUILD fails for me. Maybe you should test for existence. [[ -d ${pkgdir}/usr/lib64/ ]] && mv ${pkgdir}/usr/lib64/ ${pkgdir}/usr/lib || true

soloturn commented on 2016-07-03 15:23 (UTC) (edited on 2016-07-03 15:33 (UTC) by soloturn)

i could install it successful but it did not make pitivi recognice that gst-transcoder is installed. it needed: sudo pacman -S gobject-introspection makepkg -sri to work. am not enough expert to say if this is a dependency of pitivi or gst-transcoder.

lubosz commented on 2016-07-03 09:11 (UTC)

@Grandma: It's not a fork, it's the maintainers remote. But changed it to the upstream one, since it didn't exist yet when I packaged this. But I changed it to the correct one now. @soloturn: Thanks, didn't notice the bug in mv.

soloturn commented on 2016-07-02 18:47 (UTC)

$ git diff PKGBUILD diff --git a/PKGBUILD b/PKGBUILD index 23faeb6..8455721 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Lubosz Sarnecki <lubosz@gmail.com> pkgname=gst-transcoder-git -pkgver=0.4.167f960 +pkgver=0.19.1ac6db5 pkgrel=1 pkgdesc="GStreamer Transcoding API" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('gstreamer') makedepends=('git' 'meson') options=(!libtool !emptydirs) -source='git+https://github.com/thiblahute/gst-transcoder.git' +source=(git+https://github.com/pitivi/gst-transcoder.git) sha256sums=('SKIP') _gitname='gst-transcoder' @@ -37,5 +37,5 @@ build() { package() { cd $_gitname make DESTDIR="${pkgdir}" install - mv ${pkgdir}/usr/lib64/* ${pkgdir}/usr/lib + mv ${pkgdir}/usr/lib64/ ${pkgdir}/usr/lib }

lukypie commented on 2016-06-04 15:19 (UTC)

It has gos come problems also with meson, it does not compile.

Grandma commented on 2016-04-18 21:53 (UTC)

I have two bugs withing installation of this package: The "source" variable(in PKGBUILD) should be an array. You can just add a brackets to variable's value. Second wrong thing is meson's binary searching in configure. This problem is solved in original gst-transcoder project, why you has use this fork instead? Fork: https://github.com/thiblahute/gst-transcoder Original prokect: https://github.com/pitivi/gst-transcoder