mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
29 lines
828 B
Text
29 lines
828 B
Text
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=gnome-user-docs
|
|
pkgver=3.36.1
|
|
pkgrel=0
|
|
pkgdesc="GNOME User Documentation"
|
|
url="https://gitlab.gnome.org/GNOME/gnome-user-docs"
|
|
arch="noarch"
|
|
license="CC-BY-3.0"
|
|
makedepends="itstool libxml2-utils gettext-dev"
|
|
options="!check" # no tests
|
|
source="https://download.gnome.org/sources/gnome-user-docs/${pkgver%.*}/gnome-user-docs-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="4f1e1173b339809d17c10c650857f3366dceb1e1483209fa99073018bb212b59f530c519685250bc24c6667452e3100d29534ca6008f57d479f313c0e14a8768 gnome-user-docs-3.36.1.tar.xz"
|