diff options
Diffstat (limited to 'libre/chroottools')
-rw-r--r-- | libre/chroottools/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libre/chroottools/PKGBUILD b/libre/chroottools/PKGBUILD new file mode 100644 index 000000000..d48b9015b --- /dev/null +++ b/libre/chroottools/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=chroottools +pkgver=20121128.1 +pkgdesc='Chroot tools for Arch and Parabola package maintainers' +url='http://projects.parabolagnulinux.org/packages/chroottools.git/' +license=('GPL') + +replaces=(devtools) +provides=(devtools) +conflicts=(devtools) + +pkgrel=1 +arch=('any') +depends=( + 'arch-install-scripts' # for pacstrap, used to make chroots + 'curl' + 'namcap' # to check packages made by makechrootpkg +) +source=("https://projects.parabolagnulinux.org/packages/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR=${pkgdir} install +} + +md5sums=('8f9b36b50466a278e02e29f0ca06d267') |