2012-02-04 18:28:57 +01:00
|
|
|
# Template file for 'void-installer'
|
|
|
|
pkgname=void-installer
|
2013-03-12 00:34:00 +01:00
|
|
|
version=20130312
|
2013-03-12 00:56:19 +01:00
|
|
|
revision=2
|
2012-02-04 18:28:57 +01:00
|
|
|
short_desc="The Void Linux installer"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-03-12 00:34:00 +01:00
|
|
|
homepage="http://www.voidlinux.eu"
|
2012-02-04 18:28:57 +01:00
|
|
|
license="Simplified BSD"
|
|
|
|
|
2012-11-23 01:35:10 +01:00
|
|
|
nofetch=yes
|
|
|
|
noextract=yes
|
|
|
|
noarch=yes
|
2013-04-14 16:51:01 +02:00
|
|
|
makedepends="dialog"
|
2012-11-23 01:35:10 +01:00
|
|
|
|
2012-02-04 18:28:57 +01:00
|
|
|
do_fetch() {
|
2012-06-12 09:17:59 +02:00
|
|
|
local url="git://github.com/voidlinux/void-installer"
|
2012-02-04 18:28:57 +01:00
|
|
|
msg_normal "Fetching source from $url ...\n"
|
|
|
|
git clone ${url} ${pkgname}-${version}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
make DESTDIR=$DESTDIR install
|
|
|
|
}
|
2013-04-14 16:51:01 +02:00
|
|
|
|
|
|
|
void-installer_package() {
|
|
|
|
depends="dialog"
|
|
|
|
noarch="yes"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr
|
|
|
|
}
|
|
|
|
}
|