updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / live-helper / PKGBUILD
blobc97d8bd8d41a7965627c02a0fd3d622a8b9766f2
1 # Contributor: Mark Pustjens <pustjens@dds.nl>
3 pkgname=live-helper
4 pkgver=20100503
5 pkgrel=1
6 pkgdesc="Tool to create debian-based live cd/dvd/usb images."
7 arch=('i686' 'x86_64')
8 url="http://live.debian.net/"
9 license=('GPL')
10 depends=('debootstrap' 'bash')
11 source=()
13 _gitroot="git://live.debian.net/git/live-helper.git"
14 _gitname="live-helper"
16 build() {
17   cd ${srcdir}
18   msg "Connecting to GIT server...."
20   if [ -d $_gitname ] ; then
21     cd $_gitname && git pull origin
22     msg "The local files are updated."
23   else
24     git clone $_gitroot $_gitname
25   fi
27   msg "GIT checkout done or server timeout"
28   msg "Starting make..."
30   #
31   # BUILD HERE
32   #
34   cd ${srcdir}/${_gitname}
35   make install DESTDIR=${pkgdir}