blob: 20eb1b743bb2ece84c7776b9030075ee5417f283 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/make -f
include ../source.mk
macros = \
bindir=/usr/share/$(OPK_SOURCE) \
pkgdatadir=/usr/share/$(OPK_SOURCE) \
archtabdir=/usr/share/opkhelper/archtab-v1
build:
oh-autoconfigure
oh-autobuild -- $(macros)
touch $@
install: build
oh-autoinstall -- $(macros)
mv dest/usr/share/opkbuild/helpers/opkhelper \
dest/usr/share/opkbuild/helpers/$(OPK_SOURCE)
find dest/usr/share/$(OPK_SOURCE) -name '*.sm' -exec chmod a-x '{}' ';'
oh-installfiles
|