SUMMARY = "Standard GNU compressor" DESCRIPTION = "GNU Gzip is a popular data compression program originally written by Jean-loup Gailly for the GNU \ project. Mark Adler wrote the decompression part" HOMEPAGE = "http://www.gnu.org/software/gzip/" SECTION = "console/utils" # change to GPLv3+ in 2007/07. Previous GPLv2 version is 1.3.12 LICENSE = "GPLv3+" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ file://gzip.h;firstline=8;endline=20;md5=e2ec6b91fbe43a18f6081f3bbae46a01" SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" inherit autotools do_install () { autotools_do_install if [ "${PN}" = "${BPN}" ] ; then # Rename and move files into /bin (FHS), which is typical place for gzip install -d ${D}${base_bindir} mv ${D}${bindir}/gunzip ${D}${base_bindir}/gunzip.${PN} mv ${D}${bindir}/gzip ${D}${base_bindir}/gzip.${PN} mv ${D}${bindir}/zcat ${D}${base_bindir}/zcat.${PN} fi } pkg_postinst_${PN} () { if [ "${PN}" = "${BPN}" ] ; then update-alternatives --install ${base_bindir}/gunzip gunzip gunzip.${PN} 100 update-alternatives --install ${base_bindir}/gzip gzip gzip.${PN} 100 update-alternatives --install ${base_bindir}/zcat zcat zcat.${PN} 100 fi } pkg_prerm_${PN} () { if [ "${PN}" = "${BPN}" ] ; then update-alternatives --remove gunzip gunzip.${PN} update-alternatives --remove gzip gzip.${PN} update-alternatives --remove zcat zcat.${PN} fi } nnamed repository; edit this file 'description' to name the repository.Trygve Laugstøl
summaryrefslogtreecommitdiff
path: root/src/target/arm_adi_v5.h
blob: a78193c6d0dd8ed076b4216d5001b7917621c5ba (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