27 lines
304 B
Plaintext
27 lines
304 B
Plaintext
|
# Basic information
|
||
|
name="libwind"
|
||
|
version="0.0.1"
|
||
|
|
||
|
# Download options
|
||
|
format="git"
|
||
|
url="https://git.cloudapio.eu/apio/libwind.git"
|
||
|
|
||
|
# Build instructions
|
||
|
do_configure()
|
||
|
{
|
||
|
:
|
||
|
}
|
||
|
|
||
|
do_build()
|
||
|
{
|
||
|
cd $srcdir
|
||
|
make
|
||
|
}
|
||
|
|
||
|
do_install()
|
||
|
{
|
||
|
export DESTDIR=$installdir/usr
|
||
|
cd $srcdir
|
||
|
make install
|
||
|
}
|