mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libmspack
|
|
pkgver=0.8_alpha
|
|
_ver=${pkgver/_/}
|
|
pkgrel=0
|
|
pkgdesc="Library for Microsoft CAB compression formats"
|
|
url="https://www.cabextract.org.uk/libmspack/"
|
|
arch="all"
|
|
license="LGPL-2.1-only"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-dev $pkgname-utils"
|
|
source="https://www.cabextract.org.uk/libmspack/libmspack-$_ver.tar.gz"
|
|
|
|
builddir="$srcdir"/libmspack-$_ver
|
|
|
|
# secfixes:
|
|
# 0.8_alpha-r0:
|
|
# - CVE-2018-18584
|
|
# - CVE-2018-18585
|
|
# - CVE-2018-18586
|
|
# 0.7.1_alpha-r0:
|
|
# - CVE-2018-14679
|
|
# - CVE-2018-14680
|
|
# - CVE-2018-14681
|
|
# - CVE-2018-14682
|
|
# 0.5_alpha-r1:
|
|
# - CVE-2017-6419
|
|
# - CVE-2017-11423
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
# parallel build workaround
|
|
make libmspack.la libmscabd.la libmschmd.la
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
utils() {
|
|
pkgdesc="$pkgdesc (utils)"
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr
|
|
}
|
|
|
|
sha512sums="d178afc4d2eded204594c81af1c91be17d3be4f1a09829e08c103023aa7badc6b2595e9ec13cc7f77e3262d2cd874ed40ce6da01695c5c839682562740d2bf0a libmspack-0.8alpha.tar.gz"
|