34 lines
886 B
Plaintext
34 lines
886 B
Plaintext
# Tanım: X11 ve OpenGL'i destekleyen, zengin özelliklere sahip bir ekran kaydedici.
|
||
# URL: http://www.maartenbaert.be/simplescreenrecorder/
|
||
# Paketçi: Cihan Alkan
|
||
# Gerekler: qt4 ffmpeg jack xorg-glu xorg-libx11 xorg-libxi xorg-libxext xorg-libxfixes
|
||
|
||
isim=simplescreenrecorder
|
||
surum=0.3.8
|
||
devir=1
|
||
|
||
kaynak=(simplescreenrecorder_tr.qm
|
||
simplescreenrecorder.desktop)
|
||
|
||
|
||
derle() {
|
||
if [ ! -d $DERLEME_KAYNAKDIZIN/$isim ];then
|
||
git clone https://github.com/MaartenBaert/ssr.git $DERLEME_KAYNAKDIZIN/$isim
|
||
else
|
||
cd $DERLEME_KAYNAKDIZIN/$isim
|
||
git pull
|
||
cd -
|
||
fi
|
||
cp -r $DERLEME_KAYNAKDIZIN/$isim $SRC/
|
||
|
||
|
||
cd $isim
|
||
./configure --prefix=/usr --disable-assert
|
||
make
|
||
rm $SRC/$isim/data/$isim.desktop
|
||
cp $SRC/$isim.desktop $SRC/$isim/data/
|
||
make DESTDIR=$PKG install
|
||
mkdir -p /usr/share/$isim/translations
|
||
cp $SRC/simplescreenrecorder_tr.qm /usr/share/$isim/translations/
|
||
}
|