blob: aef26d06e8b68d4ce7c6bb3f41e156f9f8534ffb (
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
|
# $Id: PKGBUILD 142984 2011-11-19 18:41:40Z vesa $
# Maintainer: Vesa Kaihlavirta <vesa@archlinux.org>
# 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.
# Also, due to dependency loop problems, haskell-ghc-paths and haddock
# do not carry version dependencies. You will have to remember to build them too.
pkgname=ghc
pkgver=7.2.2
pkgrel=1
pkgdesc="The Glasgow Haskell Compiler"
arch=(i686 x86_64)
url="http://www.haskell.org/ghc/"
license=("custom")
depends=('perl' 'gmp>=5.0' gcc)
makedepends=(ghc happy perl libxslt docbook-xsl)
install=ghc.install
options=(!strip)
groups=(haskell)
source=("http://www.haskell.org/ghc/dist/$pkgver/ghc-$pkgver-src.tar.bz2"
build.mk)
build() {
cd $srcdir/$pkgname-$pkgver
cp $srcdir/build.mk mk/build.mk
./configure --prefix=/usr
make -j1 || return 1
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/ghc/license
install -d $pkgdir/usr/share/haskell
}
md5sums=('fa19d9fe5049b7a1352b0b7c9880c141'
'5a3e0880c80b1dcecf779ff2e63a9c0d')
|