arch-ppa/src/clean-chroot-manager/PKGBUILD

27 lines
743 B
Bash
Raw Normal View History

2017-03-29 08:42:49 -04:00
# Maintainer: graysky <graysky AT archlinux DOT us>
pkgname=clean-chroot-manager
2019-03-03 20:21:14 -05:00
pkgver=2.93
2017-03-29 08:42:49 -04:00
pkgrel=1
pkgdesc='Wrapper scripts for managing clean chroots.'
2017-03-29 08:42:49 -04:00
arch=('any')
url='https://github.com/graysky2/clean-chroot-manager'
license=('MIT')
depends=('devtools>=20180528-1' 'rsync')
2017-03-29 08:42:49 -04:00
conflicts=('clean_chroot_manager')
replaces=('clean_chroot_manager')
source=("$pkgname-$pkgver.tar.gz::https://github.com/graysky2/clean-chroot-manager/archive/v$pkgver.tar.gz")
2019-03-03 20:21:14 -05:00
sha256sums=('e78cf1c1a411d10dc9aae117e2fbd12cfcc4437cd39427c4a5c887ce6fa3ad8c')
2017-03-29 08:42:49 -04:00
install=ccm.install
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}