summaryrefslogtreecommitdiff
path: root/recipes-tizen/avsystem/avsystem.inc
blob: dea01a18f20b4f68d73d1bd4fadf327f1b2d7b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
DESCRIPTION = "Audio Video System"
HOMEPAGE = "http://nohomepage.org"
SECTION = "System/Libraries"
LICENSE = "Apache-2.0"

SRC_URI = ""

S = "${WORKDIR}/git"

inherit autotools-brokensep

BBCLASSEXTEND = ""
PROVIDES = ""

#PROVIDES by avsystem


#PROVIDES by avsystem-dev


#PROVIDES by libavsysaudio


RDEPENDS = ""
#RDEPENDS of avsystem (${PN})
RDEPENDS_${PN} += "eglibc"
RDEPENDS_${PN} += "systemd"

#RDEPENDS of avsystem-dev (${PN}-dev)
RDEPENDS_${PN}-dev += "avsystem"


DEPENDS = ""
#DEPENDS of avsystem
DEPENDS += "alsa-lib"
DEPENDS += "libmm-log"
DEPENDS += "pulseaudio"
DEPENDS += "iniparser"
DEPENDS += "libexif"
DEPENDS += "alsa-scenario-0.2"
DEPENDS += "libmm-ta"

do_prep() {
 cd ${S}
 chmod -Rf a+rX,u+w,g-w,o-w ${S}
 #setup -q -n avsystem-0.5.5
 cp ${S}/packaging/avsystem.manifest .
 
 
}
do_patch_append() {
    bb.build.exec_func('do_prep', d)
}

do_configure() {
}

do_compile() {
 cd ${S}
  LANG=C
  export LANG
  unset DISPLAY
  LD_AS_NEEDED=1; export LD_AS_NEEDED ;
  
  
  autotools_do_configure
  oe_runmake 
  
  
  
}
EXTRA_OECONF += " --enable-audiotest"

do_install() {
 echo export RPM_BUILD_ROOT=${D}
 cd ${S}
 LANG=C
 export LANG
 unset DISPLAY
 rm -rf ${D}
 mkdir -p ${D}
 
 
   oe_runmake \
         DESTDIR=${D} \
         INSTALL_ROOT=${D} \
         BINDIR=${prefix}/bin \
   install  
   rm -f ${D}${infodir}/dir 
   find ${D} -regex ".*\.la$" | xargs rm -f -- 
   find ${D} -regex ".*\.a$" | xargs rm -f --
 
 mkdir -m 755 -p ${D}/${sysconfdir}/rc.d/rc3.d/
 ln -s ../init.d/snd_init ${D}/${sysconfdir}/rc.d/rc3.d/S15snd_init
 mkdir -m 755 -p ${D}/${sysconfdir}/rc.d/rc4.d/
 ln -s ../init.d/snd_init ${D}/${sysconfdir}/rc.d/rc4.d/S15snd_init
 
 mkdir -m 755 -p ${D}/lib/systemd/system/multi-user.target.wants
 install -m 0644 ${S}/packaging/avsystem.service ${D}/lib/systemd/system/avsystem.service
 ln -s ../avsystem.service ${D}/lib/systemd/system/multi-user.target.wants/avsystem.service
 
 
}

pkg_postinst_libavsysaudio() {
    #!/bin/sh -e

    [ "x\$D" == "x" ] && ldconfig

}

pkg_postinst_${PN}() {
    #!/bin/sh -e

    systemctl daemon-reload
    if [ $1 == 1 ]; then
        systemctl restart avsystem.service
    fi

}

pkg_prerm_${PN}() {
    #!/bin/sh -e

    if [ $1 == 0 ]; then
        systemctl stop avsystem.service
    fi

}

pkg_postrm_libavsysaudio() {
    #!/bin/sh -e

    [ "x\$D" == "x" ] && ldconfig

}

pkg_postrm_${PN}() {
    #!/bin/sh -e

    systemctl daemon-reload

}

PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
PACKAGES += " avsystem "
PACKAGES += " avsystem-dev "
PACKAGES += " libavsysaudio "

avsystem_files = ""
avsystem_files += "${sysconfdir}/rc.d/init.d/snd_init"
avsystem_files += "${sysconfdir}/rc.d/rc3.d/S15snd_init"
avsystem_files += "${sysconfdir}/rc.d/rc4.d/S15snd_init"
avsystem_files += "${prefix}/bin/*"
avsystem_files += "/lib/systemd/system/avsystem.service"
avsystem_files += "/lib/systemd/system/multi-user.target.wants/avsystem.service"
MANIFESTFILES_${PN} = "avsystem.manifest"

avsystem-dev_files = ""
avsystem-dev_files += "${prefix}/lib/pkgconfig/*.pc"
avsystem-dev_files += "${prefix}/lib/*.so"
avsystem-dev_files += "${prefix}/include/avsystem/*.h"
MANIFESTFILES_${PN}-dev = "avsystem.manifest"

libavsysaudio_files = ""
libavsysaudio_files += "${prefix}/lib/lib*.so.*"
MANIFESTFILES_libavsysaudio = "avsystem.manifest"

FILES_${PN} = "${avsystem_files}"
FILES_${PN}-dev = "${avsystem-dev_files}"
FILES_libavsysaudio = "${libavsysaudio_files}"

PKG_avsystem= "avsystem"
PKG_avsystem-dev= "avsystem-dev"
PKG_libavsysaudio= "libavsysaudio"

require avsystem-extraconf.inc