forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
archrelease: copy trunk to extra-x86_64
git-svn-id: file:///srv/repos/svn-packages/svn@122061 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
heftig
committed
May 2, 2011
1 parent
2d6f2c6
commit cef0bfa
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# $Id$ | ||
# Maintainer: Jan de Groot <[email protected]> | ||
|
||
pkgname=epiphany | ||
pkgver=3.0.2 | ||
pkgrel=1 | ||
install=epiphany.install | ||
pkgdesc="A GNOME3 web browser based on the WebKit rendering engine." | ||
arch=('i686' 'x86_64') | ||
license=('GPL') | ||
depends=('libsoup-gnome' 'gsettings-desktop-schemas' 'libwebkit3' 'nss' | ||
'iso-codes' 'dconf' 'gobject-introspection' 'desktop-file-utils' | ||
'hicolor-icon-theme') | ||
makedepends=('intltool' 'networkmanager' 'gnome-doc-utils' 'startup-notification') | ||
options=('!libtool' '!emptydirs') | ||
groups=('gnome') | ||
url="http://www.gnome.org/projects/epiphany/" | ||
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) | ||
sha256sums=('befcc9b6061b2e5e9c78399423b09e27dc301dec55d96bf63590d543ce9bb805') | ||
|
||
build() { | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ||
--localstatedir=/var \ | ||
--disable-scrollkeeper \ | ||
--enable-network-manager | ||
make | ||
} | ||
|
||
package() { | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
make DESTDIR="${pkgdir}" install | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
post_install() { | ||
glib-compile-schemas usr/share/glib-2.0/schemas | ||
|
||
update-desktop-database -q | ||
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor | ||
} | ||
|
||
pre_upgrade() { | ||
if [ -f usr/share/gconf/schemas/epiphany.schemas ]; then | ||
usr/sbin/gconfpkg --uninstall epiphany | ||
fi | ||
} | ||
|
||
post_upgrade() { | ||
post_install | ||
} | ||
|
||
post_remove() { | ||
post_install | ||
} |