mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=evince
|
|
pkgver=3.26.0
|
|
pkgrel=0
|
|
pkgdesc="simple document viewer for GTK+"
|
|
url="http://projects.gnome.org/evince/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends="adwaita-icon-theme"
|
|
depends_dev="gtk+3.0-dev poppler-dev libsm-dev libevent-dev libxrandr-dev
|
|
libx11-dev libxcursor-dev libxcomposite-dev libxi-dev util-linux-dev
|
|
tiff-dev gobject-introspection-dev libxml2-dev py-six libspectre-dev"
|
|
makedepends="$depends_dev intltool itstool gnome-doc-utils
|
|
adwaita-icon-theme-dev gnome-common automake autoconf
|
|
gtk-doc yelp-tools"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang $pkgname-libs"
|
|
source="https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
|
|
builddir="${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
# secfixes:
|
|
# 3.24.0-r2:
|
|
# - CVE-2017-1000083
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-nautilus \
|
|
--without-keyring \
|
|
--enable-introspection \
|
|
--disable-static \
|
|
--enable-comics
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
libs() {
|
|
default_libs
|
|
mv "$pkgdir"/usr/lib/* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
doc() {
|
|
default_doc
|
|
if [ -d "$pkgdir"/usr/share/help ]; then
|
|
mv "$pkgdir"/usr/share/help "$subpkgdir"/usr/share/
|
|
fi
|
|
}
|
|
|
|
sha512sums="688f9d6f24811f1fb3522fdd6a1bd0da37df40ed4136c8266baa3c81a2fd8773627a71d777d837546882991c1bd28cd29c62851e507852db2717d584a18a9e63 evince-3.26.0.tar.xz"
|