Compare commits

..

No commits in common. "023aab34d983d490a05621e4cb0e88c6822b757c" and "8c83b3dbc02eb482941a2fbde6bdabfb7dbc9ffb" have entirely different histories.

2 changed files with 0 additions and 49 deletions

View file

@ -121,12 +121,6 @@ exclude_regex = "^.*(alpha|beta|rc).*$"
# github # github
[hck]
source = "github"
github = "sstadick/hck"
use_max_tag = true
prefix = "v"
[spiped] [spiped]
source = "github" source = "github"
github = "Tarsnap/spiped" github = "Tarsnap/spiped"

View file

@ -1,43 +0,0 @@
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
# Contributor: aulonsal <aulonsal at gmail dot com>
pkgname=hck
pkgver=0.7.1
pkgrel=1
pkgdesc='A sharp cut(1) clone'
arch=('x86_64')
url="https://github.com/sstadick/hck"
license=('Unlicense' 'MIT')
depends=('gcc-libs')
makedepends=('git' 'rust' 'cmake')
options=('!lto')
_commit='aa6988c51c372074222e056e8f7fc8b332272b4e'
source=("$pkgname::git+$url.git#commit=$_commit")
md5sums=('SKIP')
prepare() {
cd "$pkgname"
# download dependencies
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$pkgname"
cargo build --release --frozen
}
check() {
cd "$pkgname"
cargo test --frozen
}
package() {
cd "$pkgname"
install -vDm755 -t "$pkgdir/usr/bin" target/release/hck
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE-MIT UNLICENSE
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
}