diff options
author | Nick Dowsett | 2024-06-28 21:57:36 +0800 |
---|---|---|
committer | Nick Dowsett | 2024-06-28 21:57:36 +0800 |
commit | b09cfe85379a802a3987898853091d3ad99111e3 (patch) | |
tree | dbf86e5ec4322bfd17877f5b81a2103b6c5ba352 | |
parent | bfc7eeeec128cd466b05aba19cba33464360dff1 (diff) | |
download | aur-b09cfe85379a802a3987898853091d3ad99111e3.tar.gz |
Fix build issue with PKGBUILD
-rw-r--r-- | PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -34,6 +34,7 @@ check() { package() { cd $pkgname-$pkgver - install -Dm0644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname" + # installation of license currently broken + # install -Dm0644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname" install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname" } |