PKGBUILDs/xz/static-compat/PKGBUILD
Martchus 5411a9d1fd Update static libraries
* Use an older glibc so resulting binaries can run
  on older systems (without having to link statically
  against glibc)
* Call packages static-compat-* to make it clear that
  these packages are intended for compatibility with
  older distributions
* Add further libraries to get static-compat-qt6-base
  and some other static-compat-qt6-* packages building
2022-04-28 22:43:29 +02:00

43 lines
1.3 KiB
Bash

# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: François Charette <firmicus@gmx.net>
_pkgname=xz
pkgname=static-compat-$_pkgname
pkgver=5.2.5
pkgrel=1
pkgdesc='Library and command line tools for XZ and LZMA compressed files'
arch=('x86_64')
url='https://tukaani.org/xz/'
license=('GPL' 'LGPL' 'custom')
depends=('glibc-static-compat')
makedepends=('static-compat-configure')
options=(!emptydirs staticlibs)
source=("https://tukaani.org/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.sig})
sha256sums=('f6f4910fd033078738bd82bfba4f49219d03b17eb0794eb91efbae419f4aba10'
'SKIP')
validpgpkeys=('3690C240CE51B4670D30AD1C38EE757D69184620')
build() {
source static-compat-environment
cd "${srcdir}/${_pkgname}-${pkgver}"
static-compat-configure --disable-shared --enable-static --disable-rpath
make
}
check() {
source static-compat-environment
cd "${srcdir}/${_pkgname}-${pkgver}"
make check
}
package() {
source static-compat-environment
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}/"
ln -sf /usr/static/share/doc/xz/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
rm -r "$pkgdir/$static_compat_prefix"/bin
rm -r "$pkgdir/$static_compat_prefix"/share/{man,doc,locale}
}