git » ghc-bin.git » main » tree

[main] / PKGBUILD

# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Vesa Kaihlavirta <vesa@archlinux.org>
# Contributor: Thomas Dziedzic <gostrc@gmail.com>

# Special note for devs looking to upgrade this package:
#   ghc places a unique hash for each library when it is built.
#   Libraries depend on versions specified by those hashes.
#   This implies that all libraries need to be rebuilt when ghc is rebuilt.

shopt -s extglob

pkgbase=ghc-bin
pkgname=(ghc-libs-bin ghc-bin ghc-static-bin)
pkgver=9.2.8
pkgrel=1
pkgdesc='The Glasgow Haskell Compiler'
arch=('armv7h')
url='https://www.haskell.org/ghc/'
license=('custom')
makedepends=('perl' 'numactl' 'libffi')
source=("https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/$pkgver/ghc-$pkgver-armv7-deb10-linux-gnueabihf.tar.xz"
         ghc-register.hook ghc-unregister.hook)

prepare() {
  [ -d ghc-${pkgver}-armv7-linux-gnueabihf ] && ln -s ghc-${pkgver}-armv7-linux-gnueabihf ghc-${pkgver}
}

build() {
  cd ghc-${pkgver}

  ./configure \
    --prefix=/usr

}

_pkg_vars() {
  GHCARCH=arm
}

package_ghc-static-bin() {
  pkgdesc='The Glasgow Haskell Compiler - Static Libraries and Documentation'
  depends=('ghc-bin')
  provides=("ghc-static=$pkgver-$pkgrel")
  conflicts=('ghc-static')

  _pkg_vars

  cd ghc-$pkgver

  DESTDIR="$pkgdir" make install

  mv "$pkgdir"/usr/lib/ghc-$pkgver/lib/package.conf.d "$srcdir"/static-package.conf.d
  find "$pkgdir"/usr/lib ! \( -name "*.a" -o -name "*.o" -o -name "*.p_o" -o -name "*.p_hi" -o -name "*.hi" \) -type f -delete
  find "$pkgdir"/usr/lib -type d -empty -delete
  mv "$srcdir"/static-package.conf.d "$pkgdir"/usr/lib/ghc-$pkgver/lib/
  rm "$pkgdir"/usr/lib/ghc-$pkgver/lib/static-package.conf.d/*.copy
  rm -r "$pkgdir"/usr/bin "$pkgdir"/usr/include "$pkgdir"/usr/lib/ghc-$pkgver/bin "$pkgdir"/usr/lib/ghc-$pkgver/lib/$GHCARCH-linux-ghc-$pkgver/*.so

}

package_ghc-bin() {
  pkgdesc='The Glasgow Haskell Compiler'
  depends=('gcc' 'ghc-libs-bin')
  provides=('haskell-haddock=2.26.0'
            'haskell-hp2ps=0.1'
            'haskell-hpc-bin=0.68'
            'haskell-hsc2hs=0.68.8')
  replaces=('haskell-haddock'
            'haskell-hp2ps'
            'haskell-hpc-bin'
            'haskell-hsc2hs')

  provides+=("haskell-ghc=$pkgver")
  replaces+=("haskell-ghc")

  provides+=("ghc=$pkgver-$pkgrel")
  conflicts+=('ghc')

  _pkg_vars

  cd ghc-$pkgver
  DESTDIR="$pkgdir" make install

  # Remove static libs
  find "$pkgdir"/usr/lib \( -name "*.a" -o -name "*.o" -o -name "*.p_o" -o -name "*.p_hi" -o -name "*.hi" \) -delete

  # ghc-pkg is in ghc-libs
  rm "$pkgdir"/usr/lib/ghc-$pkgver/bin/ghc-pkg*
  rm "$pkgdir"/usr/bin/ghc-pkg*
  (cd "$pkgdir"/usr/lib/ghc-$pkgver/lib; rm -r package.conf.d)
  (cd "$pkgdir"/usr/lib/ghc-$pkgver/lib/$GHCARCH-linux-ghc-$pkgver; rm -r !(ghc-$pkgver|libHSghc-$pkgver-ghc$pkgver.so))

  # docs moved to ghc-static
  rm -r "$pkgdir"/usr/share/doc

  # conflict with system libffi
  rm "$pkgdir"/usr/include/ffi*.h
}

package_ghc-libs-bin() {
  pkgdesc='The Glasgow Haskell Compiler - Dynamic Libraries'
  install='ghc.install'
  depends=('gmp' 'libffi' 'numactl' 'perl')
  provides=('haskell-array=0.5.4.0'
            'haskell-base=4.16.4.0'
            'haskell-binary=0.8.9.0'
            'haskell-bytestring=0.11.4.0'
            'haskell-cabal=3.6.3.0'
            'haskell-containers=0.6.5.1'
            'haskell-deepseq=1.4.6.1'
            'haskell-directory=1.3.6.2'
            'haskell-exceptions=0.10.4'
            'haskell-filepath=1.4.2.2'
            'haskell-ghc-bignum=1.2'
            'haskell-ghc-boot=9.2.8'
            'haskell-ghc-boot-th=9.2.8'
            'haskell-ghc-compact=0.1.0.0'
            'haskell-ghc-heap=9.2.8'
            'haskell-ghci=9.2.8'
            'haskell-ghc-prim=0.8.0'
            'haskell-haskeline=0.8.2'
            'haskell-hpc=0.6.1.0'
            'haskell-integer-gmp=1.1'
            'haskell-libiserv=9.2.8'
            'haskell-mtl=2.2.2'
            'haskell-parsec=3.1.15.0'
            'haskell-pretty=1.1.3.6'
            'haskell-process=1.6.16.0'
            'haskell-stm=2.5.0.2'
            'haskell-template-haskell=2.18.0.0'
            'haskell-terminfo=0.4.1.5'
            'haskell-text=1.2.5.0'
            'haskell-time=1.11.1.1'
            'haskell-transformers=0.5.6.2'
            'haskell-unix=2.7.2.2'
            'haskell-xhtml=3000.2.2.1'
            'haskell-ghc-pkg=9.2.8')
  replaces=('haskell-array'
            'haskell-base'
            'haskell-binary'
            'haskell-bytestring'
            'haskell-cabal'
            'haskell-containers'
            'haskell-deepseq'
            'haskell-directory'
            'haskell-exceptions'
            'haskell-filepath'
            'haskell-ghc-bignum'
            'haskell-ghc-boot'
            'haskell-ghc-boot-th'
            'haskell-ghc-compact'
            'haskell-ghc-heap'
            'haskell-ghci'
            'haskell-ghc-prim'
            'haskell-haskeline'
            'haskell-hpc'
            'haskell-integer-gmp'
            'haskell-libiserv'
            'haskell-mtl'
            'haskell-parsec'
            'haskell-pretty'
            'haskell-process'
            'haskell-stm'
            'haskell-template-haskell'
            'haskell-terminfo'
            'haskell-text'
            'haskell-time'
            'haskell-transformers'
            'haskell-unix'
            'haskell-xhtml'
            'haskell-ghc-pkg')

  provides+=("haskell-ghci=$pkgver")
  conflicts+=('haskell-ghci')

  provides+=("ghc-libs=$pkgver-$pkgrel")
  conflicts+=('ghc-libs')

  _pkg_vars

  cd ghc-$pkgver

  DESTDIR="$pkgdir" make install

  # Remove static libs
  find "$pkgdir"/usr/lib \( -name "*.a" -o -name "*.o" -o -name "*.p_o" -o -name "*.p_hi" -o -name "*.hi" \) -delete

  # ghc library, headers, and other exes are in the ghc package
  rm -r "$pkgdir"/usr/lib/ghc-$pkgver/lib/$GHCARCH-linux-ghc-$pkgver/{ghc-$pkgver,libHSghc-$pkgver-ghc$pkgver.so}
  (cd "$pkgdir"/usr/lib/ghc-$pkgver/bin; rm !(ghc-pkg*))
  (cd "$pkgdir"/usr/lib/ghc-$pkgver/lib; rm -r !(package.conf.d|$GHCARCH-linux-ghc-$pkgver))
  rm "$pkgdir"/usr/lib/ghc-$pkgver/lib/package.conf.d/*.copy
  (cd "$pkgdir"/usr/bin; rm !(ghc-pkg*))
  rm -r "$pkgdir"/usr/include

  # docs moved to ghc-static
  rm -rf "$pkgdir"/usr/share/doc

  install -Dm644 "$srcdir"/ghc-register.hook "$pkgdir"/usr/share/libalpm/hooks/ghc-register.hook
  install -Dm644 "$srcdir"/ghc-unregister.hook "$pkgdir"/usr/share/libalpm/hooks/ghc-unregister.hook

  install -dm755 "$pkgdir"/usr/share/haskell/{register,unregister}
}
sha256sums=('d8926744e542a89f150635fdb2d0234c715e39caface4dcb2f0f989c96af51f1'
            '3cf96cfcc62306d9e16c7bd0fd1a73b30622af25206bc7911c7baa9e6cc362e2'
            'f7ac2668ccdef2400546e33e1ca06e9d3f8cb0f263abd5732ec577502395cb8f')