mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
c9c4108a7d
svn path=/nixpkgs/trunk/; revision=10769
12 lines
422 B
Bash
12 lines
422 B
Bash
source "$stdenv/setup" || exit 1
|
|
|
|
unpackPhase && \
|
|
cd bbdb-*.* && patchPhase && \
|
|
./configure --prefix="$out" \
|
|
--with-package-dir="$out/share/emacs/site-lisp" && \
|
|
make && make install-pkg && \
|
|
mkdir -p "$out/info" && \
|
|
make -C texinfo install-pkg && \
|
|
mv "$out/share/emacs/site-lisp/lisp/bbdb/"* \
|
|
"$out/share/emacs/site-lisp" && \
|
|
rm -rf "$out/share/emacs/site-lisp/lisp"
|