mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
29 lines
925 B
Bash
29 lines
925 B
Bash
# Author: Julien MISCHKOWITZ <wain@archlinux.fr>
|
|
# Author: tuxce <tuxce.net@gmail.com>
|
|
|
|
pkgname=yaourt
|
|
pkgver=1.3
|
|
pkgrel=1
|
|
pkgdesc="A pacman wrapper with extended features and AUR support"
|
|
arch=('any')
|
|
url="http://www.archlinux.fr/yaourt-en/"
|
|
license=(GPL)
|
|
depends=('diffutils' 'pacman>=4.1' 'package-query>=1.0' 'gettext')
|
|
optdepends=('aurvote: vote for favorite packages from AUR'
|
|
'customizepkg: automatically modify PKGBUILD during install/upgrade'
|
|
'rsync: retrieve PKGBUILD from official repositories')
|
|
backup=('etc/yaourtrc')
|
|
source=(http://mir.archlinux.fr/~tuxce/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('972173967acd160c987c6dce15a431f8')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver/"
|
|
make PREFIX=/usr sysconfdir=/etc localstatedir=/var
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver/"
|
|
make PREFIX=/usr sysconfdir=/etc localstatedir=/var DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|