You are not logged in.

#1 2004-06-11 23:33:56

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

dillo-pl PKGBUILD (dillo patched for Polish users)

Dillo is a very fast web browser which is very good for example for viewing attachments in mail. Unfortunatelly the original dillo does not support non us charsets which make it difficult for viewing non-english webpages. I found this already patched version some time ago and decided to make a PKGBUILD for it. It's not the newest version (arch has dillo 0.8.1 and this is 0.8.0) but it's working well:

pkgname=dillo-pl
pkgver=0.8.0
pkgrel=1
pkgdesc="A small, fast graphical web browser built on GTK+ (Polish)"
url="http://free.polbox.pl/s/silingen/download.htm"
depends=('gtk' 'libjpeg' 'libpng' 'perl')
install=dillo-pl.install
backup=(etc/dillo/{dillorc,dpidrc})
source=(http://free.polbox.pl/s/silingen/$pkgname.tar.gz)
md5sums=('5f4852c69d3bb1ef299dab076c41decd')
conflicts=('dillo')

build() {
  cd $startdir/src/dillo-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc/dillo --enable-cookies
  make || return 1
  make DESTDIR=$startdir/pkg install
}

dillo-pl.install file (with important information)

post_install() {
  echo "------------------------------------"
  echo "Copy dillorc from /etc/dillo to your ~/.dillo"
  echo "It is also suggested to enable old html parser"
  echo "to make many pages to look much better in dillo."
  echo "Add use_old_parser=YES to your config file."
  echo "If you have wget installed you can use it to"
  echo "download files in dillo."
  echo "------------------------------------"
}

post_upgrade() {
  /bin/true
}

pre_remove() {
  /bin/true
}

post_remove() {
  /bin/true
}

op=$1
shift
$op $*

Offline

Board footer

Powered by FluxBB