diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2018-05-03 03:32:58 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-05-14 01:58:16 +0200 |
commit | 9aec7c3c7225ec9a2ae1124eca612a709f7abddf (patch) | |
tree | 871505a0be85b3b07b86d184e3549c1bc341fa5e /etc | |
parent | 03272ad57142a1c7dacf1d9933d52650d3936225 (diff) | |
download | pacman-9aec7c3c7225ec9a2ae1124eca612a709f7abddf.tar.gz pacman-9aec7c3c7225ec9a2ae1124eca612a709f7abddf.tar.xz |
makepkg.conf: add default protocol handler for file:// urls.
This is a common URI scheme (in general if not in makepg) and we should
provide a handler for it. We already allow its use for locally sourced
git repositories, so it makes sense to not leave files out.
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index fe3858ad..4d6ab78d 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -8,7 +8,8 @@ # #-- The download utilities that makepkg should use to acquire sources # Format: 'protocol::agent' -DLAGENTS=('ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' +DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u' + 'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' 'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' 'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' 'rsync::/usr/bin/rsync --no-motd -z %u %o' |