blob: 77398025ac0202eccf87a1702265beaa980f3627 (
plain)
1
2
3
4
5
6
7
8
9
10
|
pkg:setup
args = %W[--disable-dependency-tracking --disable-silent-rules --enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp --infodir=#{info}/emacs --prefix=#{prefix} --with-gnutls --without-x --with-xml2 --without-dbus --with-modules --without-ns --without-imagemagick ]
ENV.prepend_path "PATH", Formula["gnu-sed"].opt_libexec/"gnubin"
./autogen.sh
end
pkg:configure *args
make
make DESTDIR=${PKG_DEST} install
(bin/"ctags").unlink
(man1/"ctags.1.gz").unlink
|