Package Details: python-btrfs-git 13.r6.g59c8dac-1

Git Clone URL: https://aur.archlinux.org/python-btrfs-git.git (read-only, click to copy)
Package Base: python-btrfs-git
Description: Python Btrfs module
Upstream URL: https://github.com/knorrie/python-btrfs
Licenses: LGPL3
Conflicts: python-btrfs
Provides: python-btrfs
Submitter: intelfx
Maintainer: intelfx
Last Packager: intelfx
Votes: 0
Popularity: 0.000000
First Submitted: 2019-09-29 02:16 (UTC)
Last Updated: 2024-02-22 14:36 (UTC)

Latest Comments

kageurufu commented on 2021-04-06 20:24 (UTC)

This doesn't install the scripts to /usr/bin like python-btrfs right now, this patch fixes that:

diff --git a/PKGBUILD b/PKGBUILD
index 57f01f4..2e18e86 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,4 +28,6 @@ build() {
 package() {
     cd python-btrfs
     python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+    cd bin
+    install -Dm755 btrfs-* -t "$pkgdir/usr/bin/"
 }