mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/simplescreenrecorder
This commit is contained in:
parent
d1bec3e39d
commit
a9d60784ea
2 changed files with 43 additions and 0 deletions
32
community/simplescreenrecorder/PKGBUILD
Normal file
32
community/simplescreenrecorder/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
|||
# $Id$
|
||||
# Maintainer: Kyle Keen <keenerd@gmail.com>
|
||||
# Contributor: Maarten Baert
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - configure with --disable-x86-asm --disable-glinjectlib
|
||||
|
||||
pkgname=simplescreenrecorder
|
||||
pkgver=0.3.0
|
||||
pkgrel=1
|
||||
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" "alsa-lib" "libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes" "libxi")
|
||||
optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit applications")
|
||||
makedepends=("git")
|
||||
source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver")
|
||||
md5sums=("SKIP")
|
||||
|
||||
options=("!libtool")
|
||||
install=simplescreenrecorder.install
|
||||
|
||||
build() {
|
||||
cd ssr
|
||||
./configure --prefix=/usr --disable-assert --disable-x86-asm --disable-glinjectlib
|
||||
make
|
||||
}
|
||||
package() {
|
||||
cd ssr
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
11
community/simplescreenrecorder/simplescreenrecorder.install
Normal file
11
community/simplescreenrecorder/simplescreenrecorder.install
Normal file
|
@ -0,0 +1,11 @@
|
|||
post_install() {
|
||||
update-desktop-database -q
|
||||
gtk-update-icon-cache -q -f usr/share/icons/hicolor
|
||||
ldconfig
|
||||
}
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in a new issue