mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +03:00
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
|