2010-07-13 12:45:29 +00:00
|
|
|
# Author: Julien MISCHKOWITZ <wain@archlinux.fr>
|
|
|
|
# Author: tuxce <tuxce.net@gmail.com>
|
|
|
|
|
|
|
|
pkgname=yaourt
|
2012-12-03 23:31:58 +00:00
|
|
|
pkgver=1.2.2
|
2012-04-23 01:02:28 +00:00
|
|
|
pkgrel=1
|
2010-11-27 18:35:54 +00:00
|
|
|
pkgdesc="A pacman wrapper with extended features and AUR support"
|
|
|
|
arch=('any')
|
|
|
|
url="http://www.archlinux.fr/yaourt-en/"
|
|
|
|
license=(GPL)
|
2012-01-19 02:22:04 +00:00
|
|
|
depends=('diffutils' 'pacman>=4.0' 'package-query>=1.0' 'gettext')
|
2012-04-23 01:02:28 +00:00
|
|
|
optdepends=('aurvote: vote for favorite packages from AUR'
|
2010-11-27 18:35:54 +00:00
|
|
|
'customizepkg: automatically modify PKGBUILD during install/upgrade'
|
|
|
|
'rsync: retrieve PKGBUILD from official repositories'
|
|
|
|
'pacman-color: fully colorized output')
|
2010-07-13 12:45:29 +00:00
|
|
|
backup=('etc/yaourtrc')
|
2010-11-27 18:35:54 +00:00
|
|
|
source=(http://mir.archlinux.fr/~tuxce/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
2010-07-13 12:45:29 +00:00
|
|
|
|
|
|
|
build() {
|
2010-11-27 18:35:54 +00:00
|
|
|
cd $srcdir/$pkgname-$pkgver/
|
|
|
|
make PREFIX=/usr sysconfdir=/etc localstatedir=/var
|
2010-07-13 12:45:29 +00:00
|
|
|
}
|
2010-11-27 18:35:54 +00:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/$pkgname-$pkgver/
|
2012-04-23 01:02:28 +00:00
|
|
|
make PREFIX=/usr sysconfdir=/etc localstatedir=/var DESTDIR=$pkgdir install
|
2010-11-27 18:35:54 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 23:31:58 +00:00
|
|
|
md5sums=('b6341eec9b247c1cb9c743af80d190c2')
|
2010-11-27 18:35:54 +00:00
|
|
|
# vim:set ts=2 sw=2 et:
|