summaryrefslogtreecommitdiff
path: root/community/simplescreenrecorder/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-23 16:15:08 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-23 16:15:08 -0300
commit44ae571c1d57a21af2c915b42bb656cf0d69c9ee (patch)
tree757e53f443e27a95d1b1b0cdf337c2147953fc46 /community/simplescreenrecorder/PKGBUILD
parenteadbb9961b89668e4aed317f5dd97cb04e86663e (diff)
parent1d20e4962664ab152948a14b4320b12204a1053e (diff)
Merge branch 'master' of gparabola:abslibre/abslibre-pre-mips64el
Conflicts: community/libftdi/PKGBUILD community/lxshortcut/PKGBUILD community/pcmanfm/PKGBUILD community/qingy/PKGBUILD community/yagf/PKGBUILD extra/ethtool/PKGBUILD extra/gptfdisk/PKGBUILD extra/postgresql/PKGBUILD extra/xfburn/PKGBUILD libre/linux-libre/PKGBUILD
Diffstat (limited to 'community/simplescreenrecorder/PKGBUILD')
-rw-r--r--community/simplescreenrecorder/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/simplescreenrecorder/PKGBUILD b/community/simplescreenrecorder/PKGBUILD
new file mode 100644
index 000000000..49aa26559
--- /dev/null
+++ b/community/simplescreenrecorder/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 106080 2014-02-22 04:33:02Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Maarten Baert
+
+pkgname=simplescreenrecorder
+pkgver=0.2.0
+pkgrel=2
+pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
+arch=("i686" "x86_64")
+url="http://www.maartenbaert.be/simplescreenrecorder/"
+license=("GPL3")
+depends=("qt4" "ffmpeg" "ffmpeg-compat" "alsa-lib" "libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes")
+optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit applications")
+makedepends=("git")
+source=("git+https://github.com/MaartenBaert/ssr.git#tag=0.2.0")
+md5sums=("SKIP")
+
+options=("!libtool")
+install=simplescreenrecorder.install
+
+build() {
+ cd ssr
+ ./configure --prefix=/usr --disable-assert
+ make
+}
+package() {
+ cd ssr
+ make DESTDIR="${pkgdir}" install
+}