Date: Friday, August 20, 2021 @ 15:54:15 Author: alerque Revision: 1004004
initial: vcsh 2.0.0-1 Added: vcsh/ vcsh/repos/ vcsh/trunk/ vcsh/trunk/PKGBUILD ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Added: vcsh/trunk/PKGBUILD =================================================================== --- vcsh/trunk/PKGBUILD (rev 0) +++ vcsh/trunk/PKGBUILD 2021-08-20 15:54:15 UTC (rev 1004004) @@ -0,0 +1,39 @@ +# Maintainer: Caleb Maclennan <[email protected]> +# Contributor: Evan Pitstick <nerdx00 at gmail dot com> +# Contributor: Chet Gray <[email protected]> +# Contributor: joni <[email protected]> +# Contributor: Dieter Plaetinck <[email protected]> + +pkgname=vcsh +pkgver=2.0.0 +pkgrel=1 +pkgdesc='Version Control System for $HOME that manages multiple Git repositories' +arch=(any) +url="https://github.com/RichiH/$pkgname" +license=(GPL) +depends=(git) +makedepends=(ruby-ronn) +checkdepends=(perl + perl-shell-command + perl-test-most) +source=("$pkgname::git+$url.git") +_archive="$pkgname-$pkgver" +source=("$url/releases/download/v$pkgver/$_archive.tar.xz") +sha256sums=('7bfe24dea6e332a562db7564727041a7ff59344491a8b8961143461314502060') + + +build() { + cd "$_archive" + ./configure --prefix /usr + make +} + +check() { + cd "$_archive" + make test +} + +package() { + cd "$_archive" + make DESTDIR="$pkgdir" install +}
