- commit
- 4fb20964970f19c1438c7ac69cd6fec75a08548f
- parent
- 0f92e83d5d91bfc7ef24f466f6cff5911e8b3bb3
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-06-19 06:01
add PKGBUILD
Diffstat
| A | PKGBUILD | 21 | +++++++++++++++++++++ |
| M | xiwrap.py | 2 | ++ |
2 files changed, 23 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
@@ -0,0 +1,21 @@
-1 1 # https://gist.github.com/xi/6bc37c57498ec649b2775647b63bd9e0
-1 2
-1 3 pkgname='xiwrap'
-1 4 pkgver='0.0.0'
-1 5 pkgdesc='slightly higher-level container setup utility'
-1 6 arch=('all')
-1 7 url='https://github.com/xi/xiwrap'
-1 8 license='MIT'
-1 9 depends=(
-1 10 bubblewrap
-1 11 xdg-dbus-proxy
-1 12 python3
-1 13 )
-1 14
-1 15 package() {
-1 16 install -Dm 755 xiwrap.py "$pkgdir/usr/bin/xiwrap"
-1 17 install -Dm 644 README.md "$pkgdir/usr/share/docs/xiwrap/README.md"
-1 18 git ls-files rules | while read -r l; do
-1 19 install -Dm 644 "$l" "$pkgdir/etc/xiwrap/$l"
-1 20 done
-1 21 }
diff --git a/xiwrap.py b/xiwrap.py
@@ -1,3 +1,5 @@ -1 1 #!/usr/bin/env python3 -1 2 1 3 import os 2 4 import subprocess 3 5 import sys