diff options
Diffstat (limited to 'epiphany/Pkgfile')
-rw-r--r-- | epiphany/Pkgfile | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/epiphany/Pkgfile b/epiphany/Pkgfile index c55576c..b4d4fa5 100644 --- a/epiphany/Pkgfile +++ b/epiphany/Pkgfile @@ -6,22 +6,23 @@ # Run on: gnome-desktop,startup-notification,iso-codes,avahi,webkit,libcanberra,libnotify,nss name=epiphany -version=3.1.5 +version=3.1.90 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 + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --mandir=/usr/share/man \ + --disable-schemas-compile \ + --disable-scrollkeeper \ + --disable-gtk-doc \ + --with-ca-file=/etc/ssl/certs/ca-certificates.crt \ + --with-distributor-name=NuTyX + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/gtk-doc } |