# Maintainer: Dave Reisner # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: godane # Contributor: Andres Perera pkgname=pacman-git pkgver=20110428 pkgrel=1 pkgdesc="A library-based package manager with dependency support. git version." arch=('i686' 'x86_64') url="http://www.archlinux.org/pacman/" license=('GPL') groups=('base') depends=('bash' 'curl>=7.19.4' 'gpgme' 'libarchive>=2.7.1' 'pacman-mirrorlist') makedepends=('git' 'asciidoc') optdepends=('fakeroot: for makepkg usage as normal user') backup=(etc/pacman.conf etc/makepkg.conf) conflicts=('pacman') provides=('pacman') options=(!libtool !strip) source=(pacman.conf pacman.conf.x86_64 makepkg.conf) md5sums=('10c2b220d4d2ec37a54ab7d8982acdd2' 'c6559dc43140e9023041171e72bd91e8' 'a7be38e9fcf92414ded8c7f9574a5a9b') _gitroot="git://projects.archlinux.org/pacman.git" _gitname="pacman" build() { msg 'Connecting to GIT server...' if [[ -d $_gitname ]]; then ( cd $_gitname && git pull origin ) msg 'The local files are updated.' else git clone $_gitroot fi msg 'GIT checkout done or server timeout' msg 'Starting make...' rm -rf $_gitname-build git clone $_gitname{,-build} cd $_gitname-build ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-doc \ --enable-git-version --enable-debug make } check() { cd "$srcdir/$_gitname-build" make check } package() { cd "$srcdir/$_gitname-build" make DESTDIR=$pkgdir install # install Arch specific stuff mkdir -p $pkgdir/etc case "$CARCH" in i686) install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf ;; x86_64) install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf ;; esac install -m644 $srcdir/makepkg.conf $pkgdir/etc/ # set things correctly in the default conf file case "$CARCH" in i686) mycarch="i686" mychost="i686-pc-linux-gnu" myflags="-march=i686 " ;; x86_64) mycarch="x86_64" mychost="x86_64-unknown-linux-gnu" myflags="-march=x86-64 " ;; esac sed -i $pkgdir/etc/makepkg.conf \ -e "s|@CARCH[@]|$mycarch|g" \ -e "s|@CHOST[@]|$mychost|g" \ -e "s|@CARCHFLAGS[@]|$myflags|g" # install completion files mkdir -p $pkgdir/etc/bash_completion.d/ install -m644 contrib/bash_completion $pkgdir/etc/bash_completion.d/pacman mkdir -p $pkgdir/usr/share/zsh/site-functions/ install -m644 contrib/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman } # vim: set ts=2 sw=2 et: