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>
|
2018-06-02 01:35:45 +00:00
|
|
|
# - depend on llvm50, 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)
|
2018-06-04 03:17:17 +00:00
|
|
|
pkgver=8.4.3
|
2017-12-02 03:04:39 +00:00
|
|
|
pkgrel=1
|
2016-01-18 03:44:05 +00:00
|
|
|
pkgdesc='The Glasgow Haskell Compiler'
|
2017-12-02 03:04:39 +00:00
|
|
|
arch=('x86_64')
|
2016-01-18 03:44:05 +00:00
|
|
|
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"
|
2018-06-02 01:35:45 +00:00
|
|
|
ghc-rebuild-doc-index.hook ghc-register.hook ghc-unregister.hook
|
|
|
|
0001-llvm-targets-Add-armv6l-unknown-linux-gnueabihf-and-.patch)
|
2017-09-16 18:18:41 +00:00
|
|
|
noextract=("$pkgbase-${pkgver}-src.tar.xz")
|
2018-06-04 03:17:17 +00:00
|
|
|
sha512sums=('c6cea84264f32ae888f9931f834a1d721889242f656d14262e787ec54a1793d1862ce76daacaf1006c12b8af12919501afce1dc02571373e24830e4d51803414'
|
2017-12-02 03:04:39 +00:00
|
|
|
'afb119e4f665770c5704b97034d2488504eaa7afcddca2fb6b554079921cd2330599bcb5c36669f0d0e7856dd99ae1deeca1b0e97e2371a783f26e5ef9776ba9'
|
|
|
|
'bd65a369b618ec9bee46c028c2b6acff8f883f60f6cad6e5be8561fbcef6118278abec11bb86f9e6f92cb2e05ad74ec54611c1788e8ed95187d0091fcbbf8767'
|
2018-06-02 01:35:45 +00:00
|
|
|
'd4bfdd4c8ad9ac612cf187fec150850e9f4068a4a4202503c00dba07ba26f804bc11d7181249f7e3452d7ede60dc5dedea34e73fdb584ac2953068b51c6fd5ad'
|
|
|
|
'0d46375b5d864d8e8268becf52ab66d9d51e459a1ff7ef71ca77c4d8bc65e2952b29be6acc55750aaab07c52fcb9e9bddc279d7292696fcfc578a44e5eca16a3')
|
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
|
2018-06-02 01:35:45 +00:00
|
|
|
|
|
|
|
patch -p1 -i ../0001-llvm-targets-Add-armv6l-unknown-linux-gnueabihf-and-.patch
|
2016-01-18 03:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-12-02 03:04:39 +00:00
|
|
|
make DESTDIR="$pkgdir" -j1 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")
|
2018-05-26 23:37:22 +00:00
|
|
|
depends=('gcc' 'ghc-libs')
|
2017-09-16 18:18:41 +00:00
|
|
|
|
|
|
|
cd ghc-$pkgver
|
2017-12-02 03:04:39 +00:00
|
|
|
make DESTDIR="$pkgdir" -j1 install
|
2017-09-16 18:18:41 +00:00
|
|
|
|
|
|
|
# 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'
|
2018-06-02 01:35:45 +00:00
|
|
|
depends=('gmp' 'libffi' 'perl' 'llvm50')
|
2017-09-16 18:18:41 +00:00
|
|
|
provides=('haskell-array=0.5.2.0'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-base=4.11.1.0'
|
2017-09-16 18:18:41 +00:00
|
|
|
'haskell-binary=0.8.5.1'
|
|
|
|
'haskell-bytestring=0.10.8.2'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-containers=0.5.11.0'
|
2017-09-16 18:18:41 +00:00
|
|
|
'haskell-deepseq=1.4.3.0'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-directory=1.3.1.5'
|
|
|
|
'haskell-filepath=1.4.2'
|
2018-06-04 03:17:17 +00:00
|
|
|
'haskell-ghc-boot=8.4.3'
|
|
|
|
'haskell-ghc-boot-th=8.4.3'
|
2017-09-16 18:18:41 +00:00
|
|
|
'haskell-ghc-compact=0.1.0.0'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-ghc-prim=0.5.2.0'
|
|
|
|
'haskell-haskeline=0.7.4.2'
|
2017-06-23 12:53:25 +00:00
|
|
|
'haskell-hpc=0.6.0.3'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-integer-gmp=1.0.2.0'
|
|
|
|
'haskell-mtl=2.2.2'
|
|
|
|
'haskell-parsec=3.1.13.0'
|
|
|
|
'haskell-pretty=1.1.3.6'
|
|
|
|
'haskell-process=1.6.3.0'
|
|
|
|
'haskell-stm=2.4.5.0'
|
|
|
|
'haskell-template-haskell=2.13.0.0'
|
|
|
|
'haskell-terminfo=0.4.1.1'
|
|
|
|
'haskell-text=1.2.3.0'
|
2017-09-16 18:18:41 +00:00
|
|
|
'haskell-time=1.8.0.2'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-transformers=0.5.5.0'
|
2017-09-16 18:18:41 +00:00
|
|
|
'haskell-unix=2.7.2.2'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-xhtml=3000.2.2.1'
|
|
|
|
'haskell-cabal=2.2.0.1')
|
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'
|
2017-06-23 12:53:25 +00:00
|
|
|
'haskell-ghc-prim'
|
|
|
|
'haskell-haskeline'
|
|
|
|
'haskell-hpc'
|
|
|
|
'haskell-integer-gmp'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-mtl'
|
|
|
|
'haskell-parsec'
|
2017-06-23 12:53:25 +00:00
|
|
|
'haskell-pretty'
|
|
|
|
'haskell-process'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-stm'
|
2017-06-23 12:53:25 +00:00
|
|
|
'haskell-template-haskell'
|
|
|
|
'haskell-terminfo'
|
2018-05-26 23:37:22 +00:00
|
|
|
'haskell-text'
|
2017-06-23 12:53:25 +00:00
|
|
|
'haskell-time'
|
|
|
|
'haskell-transformers'
|
|
|
|
'haskell-unix'
|
|
|
|
'haskell-xhtml'
|
|
|
|
'haskell-cabal')
|
|
|
|
|
2017-12-02 03:04:39 +00:00
|
|
|
provides+=("haskell-ghci=$pkgver")
|
|
|
|
conflicts+=('haskell-ghci')
|
|
|
|
|
2017-06-23 12:53:25 +00:00
|
|
|
cd ghc-$pkgver
|
|
|
|
|
2017-12-02 03:04:39 +00:00
|
|
|
make DESTDIR="$pkgdir" -j1 install
|
2017-09-16 18:18:41 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
}
|