blob: 7ba1884eb83d14ae8e53e0754425c56941c5181d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# we only build the library
sed -i 's/pkgname=.*/pkgname=(gpgme)/' PKGBUILD
# no Qt library
sed -i "/makedepends=/s/'qt5-base'//" PKGBUILD
# no bindings
sed -i "/makedepends=/s/'swig'//" PKGBUILD
# disable language bindings support and don't move around
# things we do not build
sed -i 's@./configure@./configure --enable-languages=no@' PKGBUILD
sed -i '/# split qgpgme/,/^}/ {/# split qgpgme/n;/^}/!{s/\(.*\)/#\1/g}}' PKGBUILD
|