diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-06-08 01:12:47 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-06-08 01:12:47 +0000 |
commit | 2ef2b67ec9d2caccd9fe15a491af2927e0a955e9 (patch) | |
tree | 9dccc95e8b728557bceb69fd4b8683eb089e1c3f /testing/epiphany | |
parent | 858349a6c61aa7cfd10e42df4f8d1baac85c159a (diff) | |
download | aports-2ef2b67ec9d2caccd9fe15a491af2927e0a955e9.tar.bz2 aports-2ef2b67ec9d2caccd9fe15a491af2927e0a955e9.tar.xz |
testing/epiphany: new aport
Diffstat (limited to 'testing/epiphany')
-rw-r--r-- | testing/epiphany/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/epiphany/APKBUILD b/testing/epiphany/APKBUILD new file mode 100644 index 0000000000..6041599642 --- /dev/null +++ b/testing/epiphany/APKBUILD @@ -0,0 +1,42 @@ +# Maintainer: William Pitcock <nenolod@dereferenced.org> +# NOTE: do not move this package to community, it is seriously broken rendering many websites. +pkgname=epiphany +pkgver=3.24.2 +pkgrel=0 +pkgdesc="GNOME web browser" +url="https://wiki.gnome.org/Apps/Web" +arch="all" +license="GPL" +depends="" +makedepends="gnome-desktop-dev webkit2gtk-dev gcr-dev json-glib-dev libsoup-dev libnotify-dev libsecret-dev libxslt-dev docbook-xml docbook-xsl libxml2-utils itstool intltool" +install="" +subpackages="$pkgname-doc $pkgname-lang" +source="http://ftp.gnome.org/pub/GNOME/sources/epiphany/3.24/epiphany-$pkgver.tar.xz" +builddir="$srcdir/epiphany-$pkgver" + +# XXX - testsuite requires an X server +options="!check" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +check() { + cd "$builddir" + make check +} + +sha512sums="f1871d92642b5ca278c6d9228d78b79aeb4284ac04f7f480f4d03bb2717fd872e4fd6ef5827ed86fdf08c91efa63ab789aedb9385948bd0f2bd4d89b5454c866 epiphany-3.24.2.tar.xz" |