PKGBUILDs/community/ghc/PKGBUILD

179 lines
5.7 KiB
Bash
Raw Normal View History

2016-01-18 03:44:05 +00:00
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Vesa Kaihlavirta <vesa@archlinux.org>
# Contributor: Thomas Dziedzic <gostrc@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2017-09-27 00:39:50 +00:00
# - depend on llvm39, make -j1
2016-01-18 03:44:05 +00:00
buildarch=4
# 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.
2017-09-16 18:18:41 +00:00
shopt -s extglob
2016-01-18 03:44:05 +00:00
2017-06-23 12:53:25 +00:00
pkgbase=ghc
2017-09-16 18:18:41 +00:00
pkgname=(ghc-libs ghc ghc-static)
pkgver=8.2.1
2017-10-22 19:42:49 +00:00
pkgrel=3
2016-01-18 03:44:05 +00:00
pkgdesc='The Glasgow Haskell Compiler'
arch=('i686' 'x86_64')
url='http://www.haskell.org/ghc/'
license=('custom')
2017-06-24 01:09:58 +00:00
makedepends=('ghc-static' 'perl' 'libxslt' 'docbook-xsl' 'python-sphinx' 'haskell-hscolour'
2017-06-23 12:53:25 +00:00
'texlive-bin' 'texlive-latexextra' 'ttf-dejavu')
2017-09-16 18:18:41 +00:00
source=("https://downloads.haskell.org/~ghc/$pkgver/$pkgbase-${pkgver}-src.tar.xz"
ghc-rebuild-doc-index.hook ghc-register.hook ghc-unregister.hook)
noextract=("$pkgbase-${pkgver}-src.tar.xz")
md5sums=('8942b6fb393984aeb8304d09bc326851'
'4966d798a2868b289022aea8b655bf17'
'700bcd96afd059d668e50b51c19650d5'
'2355771881c91cb46e6249a81352aea2')
2016-01-18 03:44:05 +00:00
prepare() {
# Need to extract this tarball with a UTF-8 locale instead of a chroot's "C"
# locale; otherwise we get:
# bsdtar: Pathname can't be converted from UTF-8 to current locale.
2017-09-16 18:18:41 +00:00
LANG=en_US.UTF-8 bsdtar xf $pkgbase-${pkgver}-src.tar.xz
2016-01-18 03:44:05 +00:00
cd ghc-$pkgver
cp mk/build.mk{.sample,}
sed -i '1iBuildFlavour = perf' mk/build.mk
}
build() {
cd ghc-$pkgver
./configure \
--prefix=/usr \
2016-06-11 14:12:05 +00:00
--docdir=/usr/share/doc/ghc \
2016-01-18 03:44:05 +00:00
--with-system-libffi \
--with-ffi-includes=$(pkg-config --variable=includedir libffi)
make -j1
}
2017-06-23 12:53:25 +00:00
package_ghc-static() {
2017-09-16 18:18:41 +00:00
pkgdesc='The Glasgow Haskell Compiler - Static Libraries and Documentation'
2017-06-23 12:53:25 +00:00
depends=('ghc')
2016-01-18 03:44:05 +00:00
cd ghc-$pkgver
2017-09-16 18:18:41 +00:00
make DESTDIR="$pkgdir" install
2016-01-18 03:44:05 +00:00
2017-07-04 15:14:16 +00:00
mv "$pkgdir"/usr/lib/ghc-$pkgver/package.conf.d "$srcdir"/static-package.conf.d
2017-09-21 18:27:29 +00:00
find "$pkgdir"/usr/lib ! \( -name "*.a" -o -name "*.p_hi" -o -name "*.hi" \) -type f -delete
2017-06-23 12:53:25 +00:00
find "$pkgdir"/usr/lib -type d -empty -delete
2017-07-04 15:14:16 +00:00
mv "$srcdir"/static-package.conf.d "$pkgdir"/usr/lib/ghc-$pkgver/
2017-09-16 18:18:41 +00:00
rm -r "$pkgdir"/usr/bin "$pkgdir"/usr/share/man
install -Dm644 "$srcdir"/ghc-rebuild-doc-index.hook "$pkgdir"/usr/share/libalpm/hooks/ghc-rebuild-doc-index.hook
2017-06-23 12:53:25 +00:00
}
package_ghc() {
pkgdesc='The Glasgow Haskell Compiler'
2017-09-16 18:18:41 +00:00
provides=("haskell-ghc=$pkgver")
replaces=("haskell-ghc")
depends=('ghc-libs')
cd ghc-$pkgver
make DESTDIR="$pkgdir" install
# Remove static libs
2017-09-21 18:27:29 +00:00
find "$pkgdir"/usr/lib \( -name "*.a" -o -name "*.p_hi" -o -name "*.hi" \) -delete
2017-09-16 18:18:41 +00:00
# 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; rm -r !(bin|ghc-$pkgver))
# docs moved to ghc-static
rm -r "$pkgdir"/usr/share/doc
install -Dm644 utils/completion/ghc.bash \
"$pkgdir/usr/share/bash-completion/completions/ghc"
}
package_ghc-libs() {
pkgdesc='The Glasgow Haskell Compiler - Dynamic Libraries'
2017-06-23 12:53:25 +00:00
install='ghc.install'
2017-09-27 00:39:50 +00:00
depends=('gcc' 'gmp' 'libffi' 'perl' 'llvm39')
2017-09-16 18:18:41 +00:00
provides=('haskell-array=0.5.2.0'
'haskell-base=4.10.0.0'
'haskell-binary=0.8.5.1'
'haskell-bytestring=0.10.8.2'
'haskell-containers=0.5.10.2'
'haskell-deepseq=1.4.3.0'
'haskell-directory=1.3.0.2'
'haskell-filepath=1.4.1.2'
'haskell-ghc-boot=8.2.1'
'haskell-ghc-boot-th=8.2.1'
'haskell-ghc-compact=0.1.0.0'
'haskell-ghci=8.2.1'
'haskell-ghc-prim=0.5.1.0'
'haskell-haskeline=0.7.4.0'
'haskell-hoopl=3.10.2.2'
2017-06-23 12:53:25 +00:00
'haskell-hpc=0.6.0.3'
2017-09-16 18:18:41 +00:00
'haskell-integer-gmp=1.0.1.0'
2017-06-23 12:53:25 +00:00
'haskell-pretty=1.1.3.3'
2017-09-16 18:18:41 +00:00
'haskell-process=1.6.1.0'
'haskell-template-haskell=2.12.0.0'
'haskell-terminfo=0.4.1.0'
'haskell-time=1.8.0.2'
2017-06-23 12:53:25 +00:00
'haskell-transformers=0.5.2.0'
2017-09-16 18:18:41 +00:00
'haskell-unix=2.7.2.2'
'haskell-xhtml=3000.2.2'
'haskell-cabal=2.0.0.2')
2017-06-23 12:53:25 +00:00
replaces=('haskell-array'
'haskell-base'
'haskell-binary'
'haskell-bytestring'
'haskell-containers'
'haskell-deepseq'
'haskell-directory'
'haskell-filepath'
'haskell-ghc-boot'
'haskell-ghc-boot-th'
2017-09-16 18:18:41 +00:00
'haskell-ghc-compact'
'haskell-ghci'
2017-06-23 12:53:25 +00:00
'haskell-ghc-prim'
'haskell-haskeline'
'haskell-hoopl'
'haskell-hpc'
'haskell-integer-gmp'
'haskell-pretty'
'haskell-process'
'haskell-template-haskell'
'haskell-terminfo'
'haskell-time'
'haskell-transformers'
'haskell-unix'
'haskell-xhtml'
'haskell-cabal')
cd ghc-$pkgver
2017-09-16 18:18:41 +00:00
make DESTDIR="$pkgdir" install
# Remove static libs
2017-09-21 18:27:29 +00:00
find "$pkgdir"/usr/lib \( -name "*.a" -o -name "*.p_hi" -o -name "*.hi" \) -delete
2016-01-18 03:44:05 +00:00
2017-09-16 18:18:41 +00:00
# ghc library and other exes are in the ghc package
rm -r "$pkgdir"/usr/lib/ghc-$pkgver/ghc-$pkgver
(cd "$pkgdir"/usr/lib/ghc-$pkgver/bin; rm !(ghc-pkg*))
(cd "$pkgdir"/usr/bin; rm !(ghc-pkg*))
2016-06-11 14:12:05 +00:00
2017-09-16 18:18:41 +00:00
# docs moved to ghc-static
rm -r "$pkgdir"/usr/share/{man,doc}
2016-06-11 14:12:05 +00:00
2017-09-16 18:18:41 +00:00
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
2017-06-23 12:53:25 +00:00
2017-09-16 18:18:41 +00:00
install -dm755 "$pkgdir"/usr/share/haskell/{register,unregister}
2017-06-23 12:53:25 +00:00
2017-09-16 18:18:41 +00:00
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
2016-01-18 03:44:05 +00:00
}