blob: b7ed015222d782b370c97055b563a3dcb3dcda57 (
plain)
1 # Part 1:
2
3 Please read up on the following ticket:
4 https://todo.sr.ht/~kaniini/pkgconf/1
5
6 The gist: since we exchange pkg-config for pkgconf here, this should not be a
7 problem, still, this is not 'nice'.
8
9 # Part 2:
10
11 #!/bin/sh
12 #
13 # This was originally my post-install for this port!
14 # pkgconf and pkg-config are not meant to co-exist, but
15 # the decision to swap them out is only yours to make!
16 # Please review the consequences of this script!
17
18 alias="pkgconf: pkg-config"
19
20 if [ -z "$(grep "$alias" /var/lib/pkg/prt-get.aliases)" ]; then
21 echo "$alias" >> /var/lib/pkg/prt-get.aliases
22 fi
|