mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 09:51:36 +03:00
13 lines
227 B
Bash
13 lines
227 B
Bash
|
source $setup
|
||
|
|
||
|
mkdir -p $out/include/atspi $out/lib/pkgconfig
|
||
|
|
||
|
cp $src/atspi/*.h $out/include/atspi/
|
||
|
|
||
|
cat > $out/lib/pkgconfig/atspi-2.pc <<EOF
|
||
|
prefix=$out
|
||
|
includedir=\${prefix}/include
|
||
|
Name: atspi
|
||
|
Cflags: -I\${includedir}
|
||
|
EOF
|