updated on Mon Jan 16 16:00:41 UTC 2012
[aur-mirror.git] / pacwrap / PKGBUILD
blob43f930e82a34b2bd53122b4d0037c280dbfeea57
1 # Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
2 # Contributor: Bruenig <Matthew (dot) Bruenig (at) Gmail (dot) com>
4 pkgname=pacwrap
5 pkgver=0.2.2
6 pkgrel=1
7 pkgdesc="Wraps the 'pacman' and 'packer' tools - replaced by the 'packer-color' package"
8 arch=("any")
9 url="http://github.com/bruenig/${pkgname}"
10 license=("GPL3")
11 depends=("bash" "packer")
12 options=(!emptydirs)
13 source=(${pkgname})
15 package() {
16         cd "${srcdir}"
18         # Messages
19         warning "Due to coding changes in 'packer', install the 'packer-color' package instead."
20         read -p "Are you sure that you want to continue building this package despite its deprecated status? [y/N] " -n 1
21         if [[ ! $REPLY =~ ^[Yy]$ ]]; then
22                 echo ""
23                 return 1
24         fi
26         install -D -m755 ${pkgname} "${pkgdir}"/usr/bin/${pkgname}
29 sha1sums=('200d9c797d877ca5db69177d7610ba198d452bcc')