Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | DESCRIPTION = "MiniDLNA (aka ReadyDLNA) is server software with the aim of \ |
| 2 | being fully compliant with DLNA/UPnP-AV clients." |
| 3 | LICENSE = "GPL-2.0|BSD" |
| 4 | DEPENDS = "ffmpeg flac libav jpeg sqlite3 libexif libogg libid3tag libvorbis" |
| 5 | |
| 6 | # because it depends on libav which has commercial flag |
| 7 | LICENSE_FLAGS = "commercial" |
| 8 | |
| 9 | inherit gettext autotools-brokensep update-rc.d systemd |
| 10 | |
| 11 | SRC_URI = "git://git.code.sf.net/p/minidlna/git;branch=master;module=git \ |
| 12 | file://minidlna-daemon.init.d \ |
| 13 | file://minidlna.service \ |
| 14 | file://0001-Update-Gettext-version.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 15 | file://0001-configure-Check-for-clock_gettime-seprately-from-__N.patch \ |
Andrew Geissler | bffdb3e | 2020-08-21 16:13:29 -0500 | [diff] [blame] | 16 | file://0001-Mark-setjmp_buffer-extern-declaration.patch \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 17 | " |
| 18 | |
| 19 | S = "${WORKDIR}/git" |
| 20 | |
| 21 | # This remove "--exclude=autopoint" option from autoreconf argument to avoid |
| 22 | # configure.ac:30: error: required file './ABOUT-NLS' not found |
| 23 | EXTRA_AUTORECONF = "" |
| 24 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 25 | do_install:append(){ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 26 | install -d ${D}${sysconfdir} |
| 27 | install -m 0755 minidlna.conf ${D}${sysconfdir} |
| 28 | |
| 29 | # Systemd script |
| 30 | install -d ${D}${nonarch_base_libdir}/systemd/system |
| 31 | install -m 0755 ${WORKDIR}/minidlna.service ${D}${nonarch_base_libdir}/systemd/system |
| 32 | |
| 33 | # Sysvinit script |
| 34 | install -d ${D}${sysconfdir}/init.d |
| 35 | install -m 0755 ${WORKDIR}/minidlna-daemon.init.d ${D}${sysconfdir}/init.d/minidlna |
| 36 | |
| 37 | } |
| 38 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 39 | SYSTEMD_SERVICE:${PN} = "minidlna.service" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 40 | |
| 41 | INITSCRIPT_NAME = "minidlna" |
| 42 | INITSCRIPT_PARAMS = "defaults 90" |
| 43 | |