Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jessealama/fink-mode
Editing Fink package description files in Emacs
https://github.com/jessealama/fink-mode
Last synced: 4 days ago
JSON representation
Editing Fink package description files in Emacs
- Host: GitHub
- URL: https://github.com/jessealama/fink-mode
- Owner: jessealama
- Created: 2012-09-04T13:32:21.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-11T13:21:17.000Z (about 10 years ago)
- Last Synced: 2024-05-09T07:29:22.818Z (6 months ago)
- Language: Emacs Lisp
- Size: 160 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fink-info: Edit Fink package description files in Emacs
==========This package provides a simple Emacs mode for editing [Fink](http://www.finkproject.org) package
description files.Installation
----------A Makefile is included in the distribution. Just do `make` to compile
everything, and `make install` to install. You may need to edit the
path where Emacs is installed; look in the Makefile and edit the value
of the `emacs` variable. A reasonable default is assumed for the
installation location; if you want to change it, edit the value of the
`install-dir` variable in the Makefile.Finally, modify your Emacs initialization file (usually `.emacs` in
your home directory) so that `fink-mode` is used whenever you're
working with Fink package description files. In my `.emacs` I have:(push "~/share/emacs/site-lisp/fink" load-path)
(autoload 'fink-mode "fink-mode.el"
"Major mode for working with Fink package descriptions files" t)
(add-to-list 'auto-mode-alist
(cons "\\.info" 'fink-mode))Thanks
----------This work was initially cloned from Sebastian Maret's `fink-mode.el`.