updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / pure-gen / PKGBUILD
blobca413ce86d15dab8606b9957e14be57a8be0c899
1 pkgname=pure-gen
2 pkgver=0.9
3 pkgrel=1
4 pkgdesc="A C interface generator for Pure"
5 arch=("i686" "x86_64")
6 license=('custom')
7 url="http://code.google.com/p/pure-lang"
8 depends=('pure')
9 makedepends=('make' 'gcc' 'bison' 'flex' 'ghc')
10 source=("http://pure-lang.googlecode.com/files/$pkgname-$pkgver.tar.gz")
11 md5sums=('375ad7c9d9afba28ecda9a32bd00bb0a')
13 build() {
14         echo -n 'To build pure-gen, your system should have language-c haskell package.
15 If it is not in your system, you can install it by this way.
16 > sudo pacman -S cabal-install
17 > cabal update
18 > cabal install alex happy language-c --global
19 Do you have the language-c package? (y/n) '
20         read yn
21         if [[ $yn != "y" ]]; then
22                 exit 0
23         fi
25         cd $startdir/src/$pkgname-$pkgver
27         make || return 1
28         make DESTDIR=$startdir/pkg install || return 1