diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-02-23 11:56:45 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-02-23 11:56:45 +0100 |
commit | c0d44acb92b16f7ead37642086e903540a148153 (patch) | |
tree | 757409742cb821b85392669522a9315794ae767d /i486-stage2/git | |
parent | 19862e96e73efe49975c194b71e2eb45f9db7a26 (diff) | |
download | bootstrap32-c0d44acb92b16f7ead37642086e903540a148153.tar.xz |
added git to stage2
Diffstat (limited to 'i486-stage2/git')
-rw-r--r-- | i486-stage2/git/DESCR | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/i486-stage2/git/DESCR b/i486-stage2/git/DESCR new file mode 100644 index 0000000..e95d538 --- /dev/null +++ b/i486-stage2/git/DESCR @@ -0,0 +1,23 @@ +# no python2 +sed -i "/makedepends=/s/'python2'//" PKGBUILD + +# no Gnome integration +sed -i "/makedepends=/s/'libgnome-keyring'//" PKGBUILD +sed -i "s@\(make -C contrib/credential/gnome-keyring\)@#\1@" PKGBUILD + +# no Emacs +sed -i "/makedepends=/s/'emacs'//" PKGBUILD +sed -i "s@\(make -C contrib/emacs prefix=/usr\)@#\1@" PKGBUILD + +# no documentation +sed -i "/makedepends=/s/'xmlto'//" PKGBUILD +sed -i "/makedepends=/s/'asciidoc'//" PKGBUILD +sed -i "s/all doc/all/g" PKGBUILD +sed -i "s/install install-doc/install/g" PKGBUILD + +# git-credential-libsecret.c:29:10: fatal error: glib.h: No such file or directory +# include <glib.h> +sed -i "s@\(make -C contrib/credential/libsecret\)@#\1@" PKGBUILD +sed -i "/# gnome credentials helper/,/make -C contrib\/credential\/libsecret clean/s/\(.*\)/#\1/g" PKGBUILD + +# not configured with configure? weird.. |