PKGBUILDs/meson/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

17 lines
440 B
Bash

pkgname=static-compat-meson
pkgver=1
pkgrel=1
arch=('any')
pkgdesc="Meson wrapper to use gcc-static-compat"
depends=('meson' 'static-compat-environment')
license=('GPL')
url="https://github.com/Martchus/PKGBUILDs"
source=("meson-static-compat-wrapper")
sha256sums=('SKIP')
package() {
source static-compat-environment
install -d "${pkgdir}"/usr/bin
install -m 755 "${srcdir}/meson-static-compat-wrapper" "$pkgdir"/usr/bin/$pkgname
}