2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: FLTK temelli hizli, kucuk grafiksel arayuzlu bir web tarayici
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://www.dillo.org/
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: fltk1
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=dillo
|
|
|
|
|
surum=3.0.5
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(http://www.dillo.org/download/dillo-$surum.tar.bz2
|
2016-02-24 01:27:23 +01:00
|
|
|
|
http://www.dillo.org/Icons/d2_icon3_122x122.png)
|
2017-01-31 01:37:09 +01:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd $isim-$surum
|
2016-02-24 01:27:23 +01:00
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--enable-ssl
|
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
|
|
|
|
cat > $PKG/usr/share/applications/dillo.desktop << EOF
|
|
|
|
|
[Desktop Entry]
|
|
|
|
|
Encoding=UTF-8
|
|
|
|
|
Type=Application
|
|
|
|
|
Name=Dillo
|
2016-03-31 17:24:30 +02:00
|
|
|
|
Name[tr]=Dillo
|
2016-02-24 01:27:23 +01:00
|
|
|
|
Comment=Browse The Web
|
2016-03-31 17:24:30 +02:00
|
|
|
|
Comment[tr]=İnternet Gezgini
|
|
|
|
|
GenericName[tr]=İnternet Gezgini
|
2016-02-24 01:27:23 +01:00
|
|
|
|
Icon=dillo
|
|
|
|
|
Exec=dillo
|
|
|
|
|
Categories=Network;Application;Browser;WebBrowser;
|
|
|
|
|
StartupNotify=true
|
|
|
|
|
Terminal=false
|
|
|
|
|
EOF
|
|
|
|
|
install -m644 ../d2_icon3_122x122.png $PKG/usr/share/pixmaps/dillo.png
|
|
|
|
|
}
|