diff options
author | hisbaan | 2022-05-14 02:52:43 -0400 |
---|---|---|
committer | hisbaan | 2022-05-14 02:52:43 -0400 |
commit | 6db9aa95870831cce58421c4a3bc9de8482f5f58 (patch) | |
tree | fab05bee17b9c62e909fef5baf06d9980538b069 | |
parent | fb2aeebd10140d9b4a5eb2ce40302192211e3472 (diff) | |
download | aur-6db9aa95870831cce58421c4a3bc9de8482f5f58.tar.gz |
Fix pkgver function
-rw-r--r-- | PKGBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,6 +1,6 @@ # Maintainer: Hisbaan Noorani <hisbaan@gmail.com> pkgname=whoops-git -pkgver=0.0.1.r2.f58fbdd +pkgver=0.0.1 pkgrel=1 pkgdesc="A CLI utility to undo common commands" arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64') @@ -49,8 +49,7 @@ package() { install -Dm755 target/release/${pkgname%-git} -t "${pkgdir}/usr/bin/" - # Install license and readme. - install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname%-git}/" + # Install readme. install -Dm644 docs/README.md -t "${pkgdir}/usr/share/doc/${pkgname%-git}/" # # Install man page |