diff options
author | Britney Fransen <brfransen@gmail.com> | 2022-11-10 21:49:52 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2022-11-10 21:49:52 (GMT) |
commit | 3356459a8300e68b5699b97731a92bc84a24d5c4 (patch) | |
tree | 19e84e117b0fa94b88401fd2f34c8b55a4c212b0 /linhes/clean-chroot-manager/PKGBUILD | |
parent | 1e9553ece6915d143d83dda80cc7ef953c8764a2 (diff) | |
download | linhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.zip linhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.tar.gz linhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.tar.bz2 |
clean-chroot-manager: initial inclusion
Diffstat (limited to 'linhes/clean-chroot-manager/PKGBUILD')
-rw-r--r-- | linhes/clean-chroot-manager/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/linhes/clean-chroot-manager/PKGBUILD b/linhes/clean-chroot-manager/PKGBUILD new file mode 100644 index 0000000..55b231d --- /dev/null +++ b/linhes/clean-chroot-manager/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: graysky <therealgraysky AT protonmail DOT com> + +pkgname=clean-chroot-manager +pkgver=2.222 +pkgrel=1 +pkgdesc='Wrapper for managing clean chroot builds with local repo therein.' +arch=('any') +url='https://github.com/graysky2/clean-chroot-manager' +license=('MIT') +depends=('devtools>=20190821-1' 'rsync' 'libarchive>=3.3.3' 'pacman>=5.2') +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") +b2sums=('3a485e87fa06e7af4a14cd0c45748a810ec593abb33455de1608059a8335a1e0577bebb64cb46043f1600f1d88be125c0497f03534a3e130c5f07734a0f968b1') +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" +} |