blob: c1133d3b4f5b8b6732d62b1aa599feb98fc3b180 (
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-exec && \
cd ..
#oh-strip -g
oh-installfiles
|