blob: fba72d94b990a7b8c66f0185cf026ae2df80cc53 (
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 -k
oh-installfiles
|