diff options
-rw-r--r-- | community/yelp-xsl/APKBUILD | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/community/yelp-xsl/APKBUILD b/community/yelp-xsl/APKBUILD index 26d6641a99..4c60a81bdb 100644 --- a/community/yelp-xsl/APKBUILD +++ b/community/yelp-xsl/APKBUILD @@ -1,25 +1,31 @@ # Contributor: Alan Lacerda <alacerda@alpinelinux.org> # Maintainer: Alan Lacerda <alacerda@alpinelinux.org> pkgname=yelp-xsl -pkgver=3.28.0 +pkgver=3.32.1 pkgrel=0 -pkgdesc="A collection of programs and data files to help you build, maintain and distribute documentation." +pkgdesc="XSL stylesheets for the yelp help browser" url="https://wiki.gnome.org/Apps/Yelp" arch="noarch" -license="GPL LGPL MIT" +license="GPL-2.0-or-later LGPL-2.1-or-later MIT" makedepends="intltool libxslt itstool" -source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" +source="https://download.gnome.org/sources/yelp-xsl/${pkgver%.*}/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - ./configure --prefix=/usr + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var make } package() { cd "$builddir" - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install } -sha512sums="d57f9a962dc0e2eb797e1030c2c30d56047627f3fdc549c28636a486c9f4fd82c70a34f451f1359612157d791b4c3a82eac8821c43d7336933987cdc1bcf1eb8 yelp-xsl-3.28.0.tar.xz" +sha512sums="05a03e045c8278faaf39604d6cbccb449130d2c85e3231c8c9737e344fc249cd2949011fb1a0e4fb6085dc21374e7804fc7fa4161f51607d93b301cbcf5453be yelp-xsl-3.32.1.tar.xz" |