Hi,
In addition of everything Doug said, I'd add that you don't need to specify "$srcdir" in your `cd` and `install` commands since "cd" into the "srcdir" is always implied in PKGBUILDs' functions:
```
build() {
cd "$name-$version"
cargo build --release
}
package() {
install -Dm755 "$name-$version/target/release/$name"
"$pkgdir/usr/bin/$name"
}
```
On a side note, I left a comment on the webAUR page of the
"movim" package you maintain with suggestions to improve the
PKGBUILD as well. I hope this helps :)
-- Regards, Antiz (Robin C.)