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

30 lines
854 B
Bash

# Contributor: Antonio Rojas <arojas@archlinux.org>
_pkgname=md4c
pkgname=static-compat-$_pkgname
pkgver=0.4.8
pkgrel=1
pkgdesc='C Markdown parser'
arch=(x86_64)
url='https://github.com/mity/md4c'
license=(MIT)
depends=(glibc-static-compat)
makedepends=(static-compat-cmake)
options=(staticlibs !emptydirs)
source=($_pkgname-$pkgver.tar.gz::"https://github.com/mity/md4c/archive/release-$pkgver.tar.gz")
sha256sums=('4a457df853425b6bb6e3457aa1d1a13bccec587a04c38c622b1013a0da41439f')
build() {
source static-compat-environment
static-compat-cmake -B build -S $_pkgname-release-$pkgver
cmake --build build
}
package() {
source static-compat-environment
DESTDIR="$pkgdir" cmake --install build
rm -r "$pkgdir/$static_compat_prefix"/share/man
install -Dm644 $_pkgname-release-$pkgver/LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
}