blob: cf7fb958c4dda5e1f55f2fc06d8534b2af4bc7df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer: Magnus Anderson <magnus@iastate.edu>
pkgname=arch-chroot-build
pkgdesc="Build AUR packages in a chroot easily"
url='https://github.com/magnus-ISU/aur-scripts/blob/master/arch-chroot-build'
source=('https://raw.githubusercontent.com/magnus-ISU/aur-scripts/master/arch-chroot-build')
pkgver=1
pkgrel=1
license=('MIT')
depends=('devtools')
arch=('any')
sha256sums=('SKIP')
package() {
mkdir -p "${pkgdir}/usr/bin/"
install -D -m755 "$srcdir/arch-chroot-build" "${pkgdir}/usr/bin/"
}
|