浏览代码

make all install paths configurable

This would enable users to install to other locations (important e.g. for chroot installs or packaging).
tags/v3.1
Kriss 5 年前
committed by GitHub
父节点
当前提交
61e6befc56
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. +5
    -5
      Makefile

+ 5
- 5
Makefile 查看文件

@@ -13,10 +13,10 @@ install:
chmod 755 $(DESTDIR)$(PREFIX)/bin/muttimage
cp -f bin/mailsync $(DESTDIR)$(PREFIX)/bin
chmod 755 $(DESTDIR)$(PREFIX)/bin/mailsync
mkdir -p /usr/share/mutt-wizard
cp -f mailcap /usr/share/mutt-wizard
cp -f mutt-wizard.muttrc /usr/share/mutt-wizard
cp -f domains.csv /usr/share/mutt-wizard
mkdir -p $(DESTDIR)$(PREFIX)/share/mutt-wizard
cp -f mailcap $(DESTDIR)$(PREFIX)/share/mutt-wizard
cp -f mutt-wizard.muttrc $(DESTDIR)$(PREFIX)/share/mutt-wizard
cp -f domains.csv $(DESTDIR)$(PREFIX)/share/mutt-wizard
cp -f mw.1 $(DESTDIR)$(MANPREFIX)/man1/mw.1

uninstall:
@@ -24,6 +24,6 @@ uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/mailsync
rm -f $(DESTDIR)$(PREFIX)/bin/openfile
rm -f $(DESTDIR)$(PREFIX)/bin/muttimage
rm -rf /usr/share/mutt-wizard
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard

.PHONY: install uninstall

正在加载...
取消
保存