summaryrefslogtreecommitdiff
path: root/libre/chroottools
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-11-27 21:42:10 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-11-27 21:42:10 -0500
commita976c4f12966caf5f25500850b343add29093532 (patch)
treeb7045d1112cf9a3bfa2db532d8e545e5bfffb65d /libre/chroottools
parent360e56ec622617a2b121c7ec51e3381ad89f0eab (diff)
add libre/chroottools
Diffstat (limited to 'libre/chroottools')
-rw-r--r--libre/chroottools/PKGBUILD31
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')