blob: 156f77f0baa5c33acb7567c86dfb6a11a56dd261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /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-fixperms
oh-strip -k
oh-installfiles
|