mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
22 lines
332 B
Bash
22 lines
332 B
Bash
source $setup
|
|
|
|
tar -xf $src
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
../pkgconf-$version/configure \
|
|
--prefix=$out \
|
|
--with-system-libdir=/no-system-libdir/ \
|
|
--with-system-includedir=/no-system-includedir/
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
ln -s $out/bin/pkgconf $out/bin/pkg-config
|
|
|
|
mkdir $out/license
|
|
cp ../pkgconf-$version/COPYING $out/license/LICENSE
|