mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
504 B
Bash
21 lines
504 B
Bash
# Maintainer: Dieter Plaetinck <dieter@plaetinck.be>
|
|
|
|
pkgname=aif
|
|
pkgver=2009.08.07
|
|
pkgrel=1
|
|
pkgdesc="The ArchLinux Installation Framework"
|
|
arch=('arm')
|
|
url="http://projects.archlinux.org/?p=aif.git;a=summary"
|
|
license=('GPL3')
|
|
depends=('bash' 'pacman')
|
|
optdepends=('markdown: to generate the html installation guide')
|
|
source=(http://ftp.archlinux.org/other/aif/aif-$pkgver.tar.gz)
|
|
md5sums=('b8d76716f85a4f7ec56dc0c195833ce5')
|
|
|
|
build() {
|
|
|
|
cd $srcdir/aif-$pkgver/
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|