diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-27 21:42:10 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-27 21:42:10 -0500 |
commit | a976c4f12966caf5f25500850b343add29093532 (patch) | |
tree | b7045d1112cf9a3bfa2db532d8e545e5bfffb65d /libre | |
parent | 360e56ec622617a2b121c7ec51e3381ad89f0eab (diff) |
add libre/chroottools
Diffstat (limited to 'libre')
-rw-r--r-- | libre/chroottools/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/chroottools/PKGBUILD b/libre/chroottools/PKGBUILD new file mode 100644 index 000000000..74300eaec --- /dev/null +++ b/libre/chroottools/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=chroottools +pkgver=20121127 +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=( + 'namcap' # to check packages made by makechrootpkg + 'arch-install-scripts' # for pacstrap, used to make chroots +) +source=("https://projects.parabolagnulinux.org/packages/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.bz2") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR=${pkgdir} install +} + +md5sums=('d80421f0bbc03feb56a77d8fa39c7c99') |