milis/talimatname/genel/f/freerdp/talimat

34 lines
693 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: uzaktan erişim protokolu
# URL: http://www.freerdp.com/
# Paketçi: milisarge
# Gerekler: xorg-libx11 xorg-libxrender xorg-libxcursor xorg-libxext ffmpeg pulseaudio cups openh264
isim=freerdp
hesap=FreeRDP
_isim=FreeRDP
surum=2.0.0
devir=1
kaynak=()
derle() {
if [ ! -d $DERLEME_KAYNAKDIZIN/$_name ];then
git clone https://github.com/$hesap/$_name $DERLEME_KAYNAKDIZIN/$_name
else
cd $DERLEME_KAYNAKDIZIN/$_name
git pull
cd -
fi
cp -r $DERLEME_KAYNAKDIZIN/$_name $SRC/
cd $SRC/FreeRDP/
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DWITH_PULSE=ON \
-DWITH_SERVER=ON \
-DWITH_OPENH264=ON \
.
make
make DESTDIR=$PKG install
}