mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
7 lines
214 B
Bash
Executable file
7 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
(
|
|
_pyver=$(expac %v python | grep -oP '^[0-9]+\.[0-9]+')
|
|
pacman -Fq /usr/lib/python${_pyver}/ | grep -v archlinuxcn | cut -d / -f 2
|
|
sogrep all libpython${_pyver}m.so
|
|
printf "%s\n" boost vim
|
|
) | sort -u
|