summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 454dce25baa9559123c2dea76a5eaeb654378bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
pkgname='linux-user-chroot'
pkgver='3'
pkgrel='2'
pkgdesc='setuid helper for making bind mounts and chrooting'
url='http://git.gnome.org/browse/linux-user-chroot/tree/README'
arch=('i686' 'x86_64')
license='GPL'
depends=('glibc')
makedepends=('libxslt')
repo="git://git.gnome.org/${pkgname}"

build () {
  cd "${srcdir}"

  msg "Connecting to the ${pkgname} Git repository..."
  if [ -d "${srcdir}/${pkgname}" ] ; then
    cd "${pkgname}" && git fetch origin
    msg "The local files are updated."
  else
    git clone "${repo}" "${pkgname}"
  fi
  cd "${srcdir}/${pkgname}"

  msg2 "Checking out version v${pkgver}"
  git checkout --force "v${pkgver}"
  msg "GIT checkout done or server timeout"

  msg2 "Configuring..."
  ./autogen.sh --prefix=/usr --enable-newnet-helper
  msg2 "Compiling..."
  make
}

package() {
  cd "${srcdir}/${pkgname}"

  msg2 "Packaging..."
  make install DESTDIR="${pkgdir}"
  chmod +s "${pkgdir}/usr/bin"/linux-user-chroot{,-newnet}
}