mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
8 lines
214 B
Text
8 lines
214 B
Text
|
#!/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
|