blob: 932febad73e641eefd0fd1e7e227746f6cbaa549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTIONS = "API Specification for freesmartphone.org"
AUTHOR = "Michael 'Mickey' Lauer"
HOMEPAGE = "http://docs.freesmartphone.org"
LICENSE = "BSD"
DEPENDS = "libxslt-native"
SECTION = "devel/specifications"
PV = "0.5.0-gitr${SRCREV}"
PR = "r0"
SRC_URI = "${FREESMARTPHONE_GIT}/specs.git;protocol=git;branch=master"
S = "${WORKDIR}/git"
do_compile() {
make xml
}
do_stage() {
install -d "${STAGING_DATADIR}/fso-specs"
install -m 0644 xml/* "${STAGING_DATADIR}/fso-specs"
}
FILE_${PN}-dev += "${datadir}/fso-specs"
|