diff options
Diffstat (limited to 'epiphany/Pkgfile')
-rw-r--r-- | epiphany/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/epiphany/Pkgfile b/epiphany/Pkgfile new file mode 100644 index 0000000..8e8c48a --- /dev/null +++ b/epiphany/Pkgfile @@ -0,0 +1,27 @@ +# Description: Navigateur pour gnome +# URL: http://www.gnome.org/ +# Maintainer: NuTyX GNOME team +# Packager: thierryn1 at hispeed dot ch +# Depends on: gnome-desktop, startup-notification,iso-codes, avahi, webkit, libcanberra, libnotify, nss +# Run on: gnome-desktop,startup-notification,iso-codes,avahi,webkit,libcanberra,libnotify,nss + +name=epiphany +version=3.1.3 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) +build() { + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --mandir=/usr/share/man \ + --disable-schemas-install \ + --without-ca-file \ + --disable-gtk-doc \ + --disable-scrollkeeper + make + make DESTDIR=$PKG install + rm -rf $PKG/var + rm -rf $PKG/usr/share/gtk-doc +} + |