mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
986 B
Bash
28 lines
986 B
Bash
# Author: Julien MISCHKOWITZ <wain@archlinux.fr>
|
|
# Author: tuxce <tuxce.net@gmail.com>
|
|
|
|
# Plugbox didn't change anything. This is from AUR.
|
|
|
|
pkgname=yaourt
|
|
pkgver=0.9.4.3
|
|
pkgrel=1
|
|
pkgdesc="A Pacman frontend with more features and AUR support"
|
|
arch=(any)
|
|
url="http://www.archlinux.fr/yaourt-en/"
|
|
license="GPL"
|
|
depends=('diffutils' 'pacman>=3.3.3' 'package-query>=0.3')
|
|
makedepends=('gettext')
|
|
optdepends=('aurvote: vote for favorite packages from AUR for inclusion in [community]'
|
|
'customizepkg: automatically modify PKGUILD during install/upgrade'
|
|
'pacman-color: fully colorized output'
|
|
'rsync: retrieve PKGBUILD from official repositories'
|
|
'colordiff: colorized output with yaourt -C')
|
|
install=yaourt.install
|
|
backup=('etc/yaourtrc')
|
|
source=(http://archiwain.free.fr/os/i686/$pkgname/$pkgname-$pkgver.src.tar.gz)
|
|
md5sums=('8f5508d4d3db0f7211fd1c898cb58d9a')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
make install DESTDIR=$pkgdir || return 1
|
|
}
|