blob: 0e16debe19d3f80b1f21b0c3151878357986bff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /usr/bin/make -f
build:
cd src && \
./configure --prefix=/usr \
--build=$${OB_BUILD_ARCH_GNU} --host=$${OB_HOST_ARCH_GNU} && \
make
install:
cd src && \
make DESTDIR="$$(pwd)/../dest" install && \
cd ..
#oh-strip -g
oh-installfiles
|