mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-11 11:35:00 -05:00
27 lines
714 B
Bash
27 lines
714 B
Bash
|
# Maintainer: graysky <graysky AT archlinux DOT us>
|
||
|
|
||
|
pkgname='clean-chroot-manager'
|
||
|
pkgver=2.87
|
||
|
pkgrel=1
|
||
|
pkgdesc='Wrapper scripts for managing clean chroots (64-bit and 32-bit).'
|
||
|
arch=('any')
|
||
|
url='https://github.com/graysky2/clean-chroot-manager'
|
||
|
license=('MIT')
|
||
|
depends=('devtools' 'rsync')
|
||
|
conflicts=('clean_chroot_manager')
|
||
|
replaces=('clean_chroot_manager')
|
||
|
source=("http://repo-ck.com/source/$pkgname/$pkgname-$pkgver.tar.xz")
|
||
|
sha256sums=('bd314651616147c6bc3266fe64ee885974922655813ca3c36b13b2823e71b6c7')
|
||
|
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"
|
||
|
}
|