summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2022-02-27 14:24:05 +0100
committerhaawda2022-02-27 14:24:05 +0100
commit2aabcb07808db928ee04562e7f85dd88c670ecec (patch)
tree2ba949c42b9997e36567298d24d20bec94d51542
downloadaur-2aabcb07808db928ee04562e7f85dd88c670ecec.tar.gz
initial reupload
-rw-r--r--.SRCINFO27
-rw-r--r--PKGBUILD38
-rw-r--r--dillo.desktop10
-rw-r--r--dillo.pngbin0 -> 6135 bytes
4 files changed, 75 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a080c0e917af
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,27 @@
+pkgbase = dillo-hg
+ pkgdesc = A small, fast, FLTK-based web browser
+ pkgver = r4664.67b70f024568
+ pkgrel = 1
+ url = http://www.dillo.org/
+ arch = i686
+ arch = x86_64
+ license = GPL3
+ makedepends = mercurial
+ depends = fltk
+ depends = libxi
+ depends = libxinerama
+ depends = openssl
+ depends = perl
+ optdepends = ttf-dejavu: Enable DejaVu Sans support
+ provides = dillo
+ conflicts = dillo
+ backup = etc/dillo/dillorc
+ backup = etc/dillo/dpidrc
+ source = hg+https://hg.dillo.org/dillo
+ source = dillo.png
+ source = dillo.desktop
+ sha256sums = SKIP
+ sha256sums = de629745e6f3a271475a501e2b94558b3deb7bf9a407bcef16426e600e1731f3
+ sha256sums = e94ead3a359c2eceb934b07af0fac4864251b9721fa7f4855331daa017b66202
+
+pkgname = dillo-hg
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..014f0192a8bf
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,38 @@
+# Contributor: joyfulgirl@archlinux.us
+# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
+
+pkgname=dillo-hg
+pkgver=r4664.67b70f024568
+pkgrel=1
+pkgdesc="A small, fast, FLTK-based web browser"
+arch=('i686' 'x86_64')
+url="http://www.dillo.org/"
+license=('GPL3')
+depends=('fltk' 'libxi' 'libxinerama' 'openssl' 'perl')
+makedepends=('mercurial')
+optdepends=('ttf-dejavu: Enable DejaVu Sans support')
+provides=('dillo')
+conflicts=('dillo')
+backup=('etc/dillo/dillorc' 'etc/dillo/dpidrc')
+source=("hg+https://hg.dillo.org/dillo" dillo.png dillo.desktop)
+sha256sums=('SKIP'
+ 'de629745e6f3a271475a501e2b94558b3deb7bf9a407bcef16426e600e1731f3'
+ 'e94ead3a359c2eceb934b07af0fac4864251b9721fa7f4855331daa017b66202')
+
+pkgver() {
+ cd dillo
+ printf "r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
+}
+
+build() {
+ cd dillo
+ CFLAGS+=' -fcommon'
+ ./autogen.sh
+ ./configure --prefix=/usr --sysconfdir=/etc/ --enable-ssl --enable-cookies
+ make
+}
+
+package() {
+ cd dillo
+ make DESTDIR="$pkgdir" install
+}
diff --git a/dillo.desktop b/dillo.desktop
new file mode 100644
index 000000000000..84d4e0483df8
--- /dev/null
+++ b/dillo.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=Dillo
+GenericName=Web Browser
+Comment=Very small and fast GUI web browser
+Exec=dillo %U
+Icon=dillo
+Terminal=false
+Type=Application
+Categories=Network;WebBrowser;
+MimeType=text/html;application/xhtml+xml;
diff --git a/dillo.png b/dillo.png
new file mode 100644
index 000000000000..8d572038b85c
--- /dev/null
+++ b/dillo.png
Binary files differ