# Template file for 'containers'
pkgname=containers
version=1.2
revision=1
short_desc="Lightweight containers using Linux user namespaces"
maintainer="Juan RP <xtraeme@gmail.com>"
license="MIT"
homepage="https://github.com/arachsys/containers"

do_fetch() {
	git clone -b ${pkgname}-${version} \
		git://github.com/arachsys/containers.git ${pkgname}-${version}
}

do_build() {
	make CC=$CC CFLAGS="${CFLAGS}" ${makejobs}
}

do_install() {
	# Disable strip
	sed -e 's,-s ,,g' -i Makefile
	make BINDIR=/usr/bin DESTDIR=${DESTDIR} install
}