ssr.paketlendi
This commit is contained in:
parent
9219c4800f
commit
a2053c3f3b
|
@ -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;
|
Binary file not shown.
|
@ -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/
|
||||
}
|
Loading…
Reference in New Issue