diff options
Diffstat (limited to 'community/surf')
-rw-r--r-- | community/surf/PKGBUILD | 41 | ||||
-rw-r--r-- | community/surf/config.h | 40 | ||||
-rw-r--r-- | community/surf/surf.install | 28 |
3 files changed, 109 insertions, 0 deletions
diff --git a/community/surf/PKGBUILD b/community/surf/PKGBUILD new file mode 100644 index 000000000..2948cf361 --- /dev/null +++ b/community/surf/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 31142 2010-10-27 11:32:19Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Pierre Chapuis <catwell at archlinux dot us> +# Contributor: Ray Kohler <ataraxia937 at gmail dot com> +# Contributor: Michael Witten <mfwitten> + +pkgname=surf +pkgver=0.4.1 +pkgrel=1 +pkgdesc="A simple web browser based on WebKit/GTK+." +arch=('i686' 'x86_64') +url='http://surf.suckless.org/' +license=('MIT') +depends=('libwebkit') +optdepends=('dmenu: URL-bar' + 'wget: default download handler') +makedepends=('pkgconfig') +install='surf.install' +source=("http://dl.suckless.org/${pkgname}/${pkgname}-${pkgver}.tar.gz" + 'config.h') +md5sums=('28ac7a6d193d25844aa6b1db77fcbafa' + 'a1d40e130189343a74f83166410f35d7') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + cp "${srcdir}/config.h" config.h + + sed -i 's/CPPFLAGS =/CPPFLAGS +=/g' config.mk + sed -i 's/CFLAGS =/CFLAGS +=/g' config.mk + sed -i 's/LDFLAGS =/LDFLAGS +=/g' config.mk + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make PREFIX=/usr DESTDIR="${pkgdir}" install + install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/community/surf/config.h b/community/surf/config.h new file mode 100644 index 000000000..c323a6239 --- /dev/null +++ b/community/surf/config.h @@ -0,0 +1,40 @@ +/* modifier 0 means no modifier */ +static char *useragent = "Surf/"VERSION" (X11; U; Unix; en-US) AppleWebKit/531.2+ Compatible (Safari)"; +static char *progress = "#FF0000"; +static char *progress_trust = "#00FF00"; +static char *stylefile = ".surf/style.css"; +static char *scriptfile = ".surf/script.js"; +static char *cookiefile = ".surf/cookies.txt"; +static time_t sessiontime = 3600; +#define NOBACKGROUND 0 + +#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \ + "prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \ + "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \ + p, q, winid, NULL } } +#define DOWNLOAD(d) { \ + .v = (char *[]){ "/bin/sh", "-c", \ + "xterm -e \"wget --load-cookies ~/.surf/cookies.txt '$0';\"", \ + d, NULL } } +#define MODKEY GDK_CONTROL_MASK +static Key keys[] = { + /* modifier keyval function arg Focus */ + { MODKEY|GDK_SHIFT_MASK,GDK_r, reload, { .b = TRUE } }, + { MODKEY, GDK_r, reload, { .b = FALSE } }, + { MODKEY|GDK_SHIFT_MASK,GDK_p, print, { 0 } }, + { MODKEY, GDK_p, clipboard, { .b = TRUE } }, + { MODKEY, GDK_y, clipboard, { .b = FALSE } }, + { MODKEY|GDK_SHIFT_MASK,GDK_j, zoom, { .i = -1 } }, + { MODKEY|GDK_SHIFT_MASK,GDK_k, zoom, { .i = +1 } }, + { MODKEY|GDK_SHIFT_MASK,GDK_i, zoom, { .i = 0 } }, + { MODKEY, GDK_l, navigate, { .i = +1 } }, + { MODKEY, GDK_h, navigate, { .i = -1 } }, + { MODKEY, GDK_j, scroll, { .i = +1 } }, + { MODKEY, GDK_k, scroll, { .i = -1 } }, + { 0, GDK_Escape, stop, { 0 } }, + { MODKEY, GDK_o, source, { 0 } }, + { MODKEY, GDK_g, spawn, SETPROP("_SURF_URI", "_SURF_GO") }, + { MODKEY, GDK_slash, spawn, SETPROP("_SURF_FIND", "_SURF_FIND") }, + { MODKEY, GDK_n, find, { .b = TRUE } }, + { MODKEY|GDK_SHIFT_MASK,GDK_n, find, { .b = FALSE } }, +}; diff --git a/community/surf/surf.install b/community/surf/surf.install new file mode 100644 index 000000000..8511ab907 --- /dev/null +++ b/community/surf/surf.install @@ -0,0 +1,28 @@ +pre_install() { + echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/surf/)" + echo "-- and rebuild package if you want to change settings." + /bin/true +} + +post_install() { + /bin/true +} + +pre_upgrade() { + echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/surf/)" + echo "-- and rebuild package if you want to change settings." + /bin/true +} + +post_upgrade() { + /bin/true +} + +pre_remove() { + /bin/true +} + +post_remove() { + /bin/true +} + |