37 lines
836 B
Plaintext
37 lines
836 B
Plaintext
# Tanım: FLTK temelli hizli, kucuk grafiksel arayuzlu bir web tarayici
|
||
# URL: http://www.dillo.org/
|
||
# Paketçi: milisarge
|
||
# Gerekler: fltk1
|
||
|
||
isim=dillo
|
||
surum=3.0.5
|
||
devir=1
|
||
kaynak=(http://www.dillo.org/download/dillo-$surum.tar.bz2
|
||
http://www.dillo.org/Icons/d2_icon3_122x122.png)
|
||
|
||
derle() {
|
||
cd $isim-$surum
|
||
./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
|
||
Name[tr]=Dillo
|
||
Comment=Browse The Web
|
||
Comment[tr]=İnternet Gezgini
|
||
GenericName[tr]=İnternet Gezgini
|
||
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
|
||
}
|