blob: 09ffc1dc33d596668a9970a8e43a2a397caef764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Deposite Pirate <dpirate at metalpunks dot info>
#
# Upstream: https://git.metalpunks.info/arch-ports
_pkgname=fcp
pkgname=fcp-git
pkgver=v0.1.0.r0.ga1e61f7
pkgrel=1
pkgdesc="A faster rust cp command"
arch=('i686' 'x86_64')
url="https://github.com/Svetlitski/fcp"
license=('BSD')
depends=('glibc' )
makedepends=('git' 'rust' 'cargo')
source=("${_pkgname}::git+${url}")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
( set -o pipefail
git describe --long --tags 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
return 0
}
package() {
cd "${_pkgname}"
cargo install --no-track --locked --all-features --path . \
--root "${pkgdir}/usr/"
install -Dm 644 LICENSE README.md -t "${pkgdir}/usr/share/doc/fcp"
}
|