diff options
author | root <root@rshg054.dnsready.net> | 2012-11-29 02:32:15 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-29 02:32:15 -0800 |
commit | fd13fc6dba397df448ce6ecf87e806fdc3a8f3cd (patch) | |
tree | 5635460ffbb1eefba5dd2d0af61c5c7eb08e9dbd /libre/chroottools | |
parent | 5c5e1e3a998a54db424b8261fac042ab41745d99 (diff) |
Thu Nov 29 02:28:50 PST 2012
Diffstat (limited to 'libre/chroottools')
-rw-r--r-- | libre/chroottools/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libre/chroottools/PKGBUILD b/libre/chroottools/PKGBUILD new file mode 100644 index 000000000..049f33286 --- /dev/null +++ b/libre/chroottools/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=chroottools +pkgver=20121128.6 +pkgdesc='Chroot tools for Arch and Parabola package maintainers' +url='http://projects.parabolagnulinux.org/packages/chroottools.git/' +license=('GPL') + +pkgrel=1 +arch=('any') +conflicts=(devtools) +depends=( + 'arch-install-scripts' # for pacstrap, used to make chroots + 'curl' # used by checkpkg +) +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=('32f0cc7fe772a946d8184125011154e1') |