ssr.paketlendi

This commit is contained in:
milisarge 2017-06-27 20:59:14 +03:00
parent 9219c4800f
commit a2053c3f3b
3 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,10 @@
[Desktop Entry]
Type=Application
Name=Basit Ekran Kaydedici
Comment=A feature-rich screen recorder that supports X11 and OpenGL
Comment[tr]=X11 ve OpenGL'i destekli zengin özelliklere sahip ekran kaydedici.
Icon=simplescreenrecorder
Exec=simplescreenrecorder --logfile
Terminal=false
Categories=AudioVideo;Video;Recorder;Qt;
Keywords=screen recorder;screencast;live streaming;

View File

@ -0,0 +1,33 @@
# Description: X11 ve OpenGL'i destekleyen, zengin özelliklere sahip bir ekran kaydedici.
# URL: http://www.maartenbaert.be/simplescreenrecorder/
# Packager: Cihan Alkan
# Depends on: qt4 ffmpeg jack xorg-glu xorg-libx11 xorg-libxi xorg-libxext xorg-libxfixes
name=simplescreenrecorder
version=0.3.8
release=1
source=(simplescreenrecorder_tr.qm
simplescreenrecorder.desktop)
build() {
if [ ! -d $DERLEME_KAYNAKDIZIN/$name ];then
git clone https://github.com/MaartenBaert/ssr.git $DERLEME_KAYNAKDIZIN/$name
else
cd $DERLEME_KAYNAKDIZIN/$name
git pull
cd -
fi
cp -r $DERLEME_KAYNAKDIZIN/$name $SRC/
cd $name
./configure --prefix=/usr --disable-assert
make
rm $SRC/$name/data/$name.desktop
cp $SRC/$name.desktop $SRC/$name/data/
make DESTDIR=$PKG install
mkdir -p /usr/share/$name/translations
cp $SRC/simplescreenrecorder_tr.qm /usr/share/$name/translations/
}