summaryrefslogtreecommitdiffstats
path: root/abs/extra/libx86/PKGBUILD
blob: 355f18fa35a75fb5cf82d01a36936cc99d9a9806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: tardo <tardo@nagi-fanboi.net>
# Contributor: Thayer Williams <thayer@archlinux.org>

pkgname=libx86
pkgver=1.1
pkgrel=7
pkgdesc="Provides an lrmi interface that works on x86, am64 and alpha"
arch=('x86_64')
url="https://www.codon.org.uk/~mjg59/libx86/"
license=('custom')
depends=('glibc')
source=("https://www.codon.org.uk/~mjg59/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz" 
        'libx86-ifmask.patch')
md5sums=('41bee1f8e22b82d82b5f7d7ba51abc2a'
         '573897186eb8670d8d97c64ea7614001')

build() {
  cd "${srcdir}"/$pkgname-$pkgver

  # lrmi.c patch courtesy of Gentoo
  patch -Np0 -i "${srcdir}"/libx86-ifmask.patch

  # FS#48120 courtesy of rrika
  CFLAGS="$CFLAGS -fno-delete-null-pointer-checks"

  # compensate for x86_64
  if [ "$CARCH" = "x86_64" ]; then
    make BACKEND=x86emu
  else
    make
  fi
}

package() {
  cd "${srcdir}"/$pkgname-$pkgver

  make DESTDIR="${pkgdir}" install
  chmod 644 "${pkgdir}"/usr/lib/libx86.a

  install -D -m 644 COPYRIGHT "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
}