mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=libxslt
|
|
pkgver=1.1.33
|
|
pkgrel=1
|
|
pkgdesc="XML stylesheet transformation library"
|
|
url="http://xmlsoft.org/XSLT/"
|
|
arch="all"
|
|
license="custom"
|
|
makedepends="libxml2-dev libgcrypt-dev libgpg-error-dev python2-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc py2-$pkgname:py2"
|
|
source="http://xmlsoft.org/sources/$pkgname-$pkgver.tar.gz
|
|
CVE-2019-11068.patch
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
# secfixes:
|
|
# 1.1.33-r1:
|
|
# - CVE-2019-11068
|
|
# 1.1.29-r1:
|
|
# - CVE-2017-5029
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
py2() {
|
|
pkgdesc="$pkgname python2 bindings"
|
|
provides="py-libxslt=$pkgver-r$pkgrel" # for backward compatibility
|
|
replaces="py-libxslt" # for backward compatibility
|
|
|
|
install -d "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="ebbe438a38bf6355950167d3b580edc22baa46a77068c18c42445c1c9c716d42bed3b30c5cd5bec359ab32d03843224dae458e9e32dc61693e7cf4bab23536e0 libxslt-1.1.33.tar.gz
|
|
9a97c5038809aaf64cb4eb7d67b95acc4b62236d7613a5f753e2a0f4c9e707c22cd07bda2e518d3f36a40b9ed5aa93496b743998c7adadb84ca147e045e35948 CVE-2019-11068.patch"
|