updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / pcc-libs-cvs / PKGBUILD
bloba38e0059896788ba5bf0f080f9ff38bd45e1a238
1 # Contributor: Andreas Baumann <abaumann at yahoo dot com>
2 # Contributor: Chris Brannon <cmbrannon (at) cox.net>
4 pkgname=pcc-libs-cvs
5 pkgver=20090404
6 pkgrel=1
7 pkgdesc="Libraries for the Portable C Compiler."
8 arch=('i686' 'x86_64')
9 url="http://pcc.ludd.ltu.se/"
10 license=('custom')
11 provides=(pcc-libs)
12 conflicts=(pcc-libs)
13 makedepends=('cvs')
14 source=(license)
15 md5sums=('51f6cc02b26af53f26cfe87494ca5c87')
17 _cvsroot=":pserver:anonymous@pcc.ludd.ltu.se:/cvsroot"
18 _cvsmod="pcc-libs"
19 build() {
20   cd "$srcdir"
22   msg "Connecting to $_cvsmod.sourceforge.net CVS server...."
23   if [ -d $_cvsmod/CVS ]; then
24     cd $_cvsmod
25     cvs -z3 update -d
26   else
27     cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
28     cd $_cvsmod
29   fi
31   msg "CVS checkout done or server timeout"
32   msg "Starting make..."
34   rm -rf "$srcdir/$_cvsmod-build"
35   cp -r "$srcdir/$_cvsmod" "$srcdir/$_cvsmod-build"
36   cd "$srcdir/$_cvsmod-build"
38   ./configure --prefix=/usr || return 1
40   make CC=gcc || return 1
42   make DESTDIR=$pkgdir install || return 1
44   install -D -m0644 ${srcdir}/license ${pkgdir}/usr/share/licenses/${pkgname}/license