mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
835 B
Bash
24 lines
835 B
Bash
# Author: Julien MISCHKOWITZ <wain@archlinux.fr>
|
|
|
|
pkgname=yaourt
|
|
pkgver=0.9.2.6
|
|
pkgrel=1
|
|
pkgdesc="A Pacman frontend with more features and AUR support"
|
|
arch=(i686 x86_64 ppc arm)
|
|
url="http://www.archlinux.fr/yaourt-en/"
|
|
license="GPL"
|
|
depends=('wget' 'diffutils' 'pacman>=3.2.0')
|
|
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'
|
|
'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=('188fecb7c7401287cca6028ab3f2de6f')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
make install DESTDIR=$pkgdir || return 1
|
|
}
|