blob: 9deea31ec91796efeb8eecbef0b52b08b0634a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "SMS Utilities"
HOMEPAGE = "http://www.multitech.net/"
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "libesmtp libyaml"
SRCREV = "${PV}"
SRC_URI = "git://git.multitech.net/sms-utils.git;protocol=git"
S = "${WORKDIR}/git"
inherit autotools
PARALLEL_MAKE = ""
do_install_append() {
install -d ${D}${datadir}/${PN}
install -m 0644 src/sms.config.example ${D}${datadir}/${PN}/
}
FILES_${PN} += "${datadir}/${PN}/sms.config.example"
|