35 lines
704 B
Plaintext
35 lines
704 B
Plaintext
# 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
|
||
# Grup: ağ
|
||
|
||
isim=freerdp
|
||
hesap=FreeRDP
|
||
_isim=FreeRDP
|
||
surum=2.0.0
|
||
devir=1
|
||
kaynak=()
|
||
|
||
derle() {
|
||
if [ ! -d $DERLEME_KAYNAKDIZIN/$_isim ];then
|
||
git clone https://github.com/$hesap/$_isim $DERLEME_KAYNAKDIZIN/$_name
|
||
else
|
||
cd $DERLEME_KAYNAKDIZIN/$_isim
|
||
git pull
|
||
cd -
|
||
fi
|
||
cp -r $DERLEME_KAYNAKDIZIN/$_isim $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
|
||
}
|