Skip to content

Instantly share code, notes, and snippets.

@lubosz
Last active December 18, 2015 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubosz/5765027 to your computer and use it in GitHub Desktop.
Save lubosz/5765027 to your computer and use it in GitHub Desktop.
GES PKGBUILD
# Maintainer: Kerrick Staley <mail@kerrickstaley.com>
# Contributor: Thijs Vermeir <thijsvermeir@gmail.com>
# Contributor: Lubosz Sarnecki <lubosz@gmail.com>
pkgname=gst-editing-services-git
pkgver=0.10.1.1.d4aee83
pkgrel=1
pkgdesc='GStreamer editing services (Git version)'
arch=('i686' 'x86_64')
license=('LGPL')
url='http://gstreamer.freedesktop.org/modules/gst-editing-services.html'
depends=('gst-plugins-base-git')
conflicts=('gst-editing-services')
makedepends=('git' 'intltool' 'pkgconfig' 'gtk-doc')
provides=('gst-editing-services=99')
options=('!libtool')
groups=('gstreamer')
source=('git://anongit.freedesktop.org/gstreamer/gst-editing-services')
sha256sums=('SKIP')
_gitname='gst-editing-services'
pkgver() {
cd $_gitname
echo $(grep AC_INIT configure.ac | sed 's/AC_INIT(GStreamer Editing Services, //' | sed 's/,//').$(git log --pretty=format:'%h' -n 1)
}
build() {
cd $_gitname
./autogen.sh --prefix=/usr
make
}
package() {
cd $_gitname
make DESTDIR="$pkgdir" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment