Skip to content

Instantly share code, notes, and snippets.

View alucryd's full-sized avatar

Maxime Gauduin alucryd

  • France
View GitHub Profile
@alucryd
alucryd / pkgbuild-depends
Last active October 15, 2015 17:13
Compute depends array for PKGBUILDs
#!/usr/bin/zsh
# Usage: pkgbuild-depends /path/to/elf1 /path/to/elf2...
# pkgbuild-depends -p package
while getopts 'p:m' opt; do
case $opt in
p)
files=($(pacman -Ql $OPTARG | cut -d' ' -f2))
;;