3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/pspell/pspell-build.sh

13 lines
218 B
Bash
Raw Normal View History

#! /bin/sh
export NIX_LDFLAGS=-Wl,-s
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd pspell-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1