mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
15 lines
417 B
Bash
15 lines
417 B
Bash
pkgname=archiso
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="ArchLinux livecd generation scripts"
|
|
arch=('arm')
|
|
url="http://projects.archlinux.org/?p=archiso.git"
|
|
license=('GPL')
|
|
depends=('mkinitcpio' 'cdrkit' 'squashfs-tools' 'devtools')
|
|
source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('84c39d8f423fd60646a1013837c68167')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|