mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
707 B
Bash
23 lines
707 B
Bash
# $Id$
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=archlinux-installer
|
|
pkgver=2009.02
|
|
pkgrel=2
|
|
pkgdesc="The ArchLinux install scripts and docs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://projects.archlinux.org/?p=installer.git"
|
|
license=('GPL')
|
|
depends=('bash' 'dialog' 'util-linux-ng' 'grep' 'sed')
|
|
source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver-$pkgrel.tar.gz")
|
|
md5sums=('93bc355046775819baa9402ff0744bd3')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver-$pkgrel
|
|
install -D -m755 setup $pkgdir/arch/setup
|
|
install -D -m755 quickinst $pkgdir/arch/quickinst
|
|
install -D -m644 arch-linux-official-guide.txt \
|
|
$pkgdir/arch/arch-linux-official-guide.txt
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|