2014-07-04 17:28:36 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Kyle Keen <keenerd@gmail.com>
|
|
|
|
# Contributor: Maarten Baert
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2018-01-17 20:55:10 +00:00
|
|
|
# - cmake with -DENABLE_32BIT_GLINJECT="FALSE" -DENABLE_X86_ASM="FALSE" -DWITH_GLINJECT="FALSE"
|
2014-07-04 17:28:36 +00:00
|
|
|
|
|
|
|
pkgname=simplescreenrecorder
|
2018-05-27 14:16:41 +00:00
|
|
|
pkgver=0.3.11
|
|
|
|
pkgrel=1
|
2014-07-04 17:28:36 +00:00
|
|
|
pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
|
2018-01-17 20:55:10 +00:00
|
|
|
arch=("x86_64")
|
2014-07-04 17:28:36 +00:00
|
|
|
url="http://www.maartenbaert.be/simplescreenrecorder/"
|
|
|
|
license=("GPL3")
|
2015-11-03 13:25:41 +00:00
|
|
|
# upstream reports crashes with Qt5, reverting FS#45104
|
2018-01-31 20:23:38 +00:00
|
|
|
# trying qt5 again with 0.3.9-3
|
|
|
|
#depends=("qt4"
|
2018-02-01 19:04:48 +00:00
|
|
|
depends=("qt5-base" "qt5-x11extras"
|
2018-01-31 20:23:38 +00:00
|
|
|
"ffmpeg" "alsa-lib" "libpulse" "jack" "libgl" "glu"
|
2016-04-29 00:19:05 +00:00
|
|
|
"libx11" "libxext" "libxfixes" "libxi"
|
|
|
|
"desktop-file-utils" "gtk-update-icon-cache")
|
2014-07-04 17:28:36 +00:00
|
|
|
optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit applications")
|
2018-02-01 19:04:48 +00:00
|
|
|
makedepends=("git" "cmake" "qt5-tools")
|
2014-07-04 17:28:36 +00:00
|
|
|
source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver")
|
|
|
|
md5sums=("SKIP")
|
|
|
|
|
|
|
|
install=simplescreenrecorder.install
|
|
|
|
|
2018-01-17 20:55:10 +00:00
|
|
|
prepare() {
|
2014-07-04 17:28:36 +00:00
|
|
|
cd ssr
|
2018-01-17 20:55:10 +00:00
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ssr/build
|
2015-05-30 21:10:57 +00:00
|
|
|
# fPIC is only required for qt5 + gcc5
|
2015-11-03 13:25:41 +00:00
|
|
|
#CXXFLAGS="$CXXFLAGS -fPIC"
|
|
|
|
#./configure --prefix=/usr --disable-assert --with-qt5
|
2018-01-17 20:55:10 +00:00
|
|
|
#./configure --prefix=/usr --disable-assert
|
2018-01-31 20:23:38 +00:00
|
|
|
# -DLRELEASE='/usr/bin/lrelease-qt4' \
|
2018-01-17 20:55:10 +00:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_BUILD_TYPE=Release \
|
2018-01-31 20:23:38 +00:00
|
|
|
-DWITH_QT5=on \
|
2018-01-17 20:55:10 +00:00
|
|
|
-DCMAKE_INSTALL_LIBDIR='lib' ../ \
|
|
|
|
-DENABLE_32BIT_GLINJECT="FALSE" -DENABLE_X86_ASM="FALSE" -DWITH_GLINJECT="FALSE"
|
2014-07-04 17:28:36 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
package() {
|
2018-01-17 20:55:10 +00:00
|
|
|
cd ssr/build
|
2014-07-04 17:28:36 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|