37 lines
877 B
Plaintext
37 lines
877 B
Plaintext
# Description: A small, fast graphical web browser built on FLTK
|
|
# URL: http://www.dillo.org/
|
|
# Packagers: pierre at nutyx dot org, tnut at nutyx dot org
|
|
# Depends on: fltk1
|
|
|
|
name=dillo
|
|
version=3.0.5
|
|
release=1
|
|
source=(http://www.dillo.org/download/dillo-$version.tar.bz2
|
|
http://www.dillo.org/Icons/d2_icon3_122x122.png)
|
|
build() {
|
|
cd $name-$version
|
|
./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
|
|
}
|
|
|