Package Details: mktorrent-git r121.de7d011-1

Git Clone URL: https://aur.archlinux.org/mktorrent-git.git (read-only, click to copy)
Package Base: mktorrent-git
Description: A simple command line utility to create BitTorrent metainfo files
Upstream URL: https://github.com/Rudde/mktorrent
Licenses: GPL
Conflicts: mktorrent
Provides: mktorrent
Submitter: spychalski
Maintainer: nulldev
Last Packager: nulldev
Votes: 4
Popularity: 0.013351
First Submitted: 2016-11-26 21:40 (UTC)
Last Updated: 2021-10-14 04:37 (UTC)

Dependencies (1)

Required by (3)

Sources (1)

Latest Comments

gonX commented on 2018-05-12 10:46 (UTC)

On line 28, insert PREFIX="/usr" after make but prior to install, as such:

diff --git a/PKGBUILD b/PKGBUILD
index 0d5a247..3b0e984 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -25,5 +25,5 @@ build() {

 package() {
        cd "$srcdir/${pkgname%-git}"
-       make DESTDIR="$pkgdir/" install
+       make PREFIX="/usr" DESTDIR="$pkgdir/" install
 }

chowbok commented on 2017-01-13 23:41 (UTC)

Why does this install to /usr/local/bin instead of /usr/bin?