coreutils: fix a few failed configure tests
[packages.git] / utils / coreutils / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=coreutils
11 PKG_VERSION:=7.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/coreutils
16 PKG_MD5SUM:=427c2914d3eab956f317c9ec6a45e62a
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/coreutils
21   SECTION:=utils
22   CATEGORY:=Utilities
23   TITLE:=The GNU core utilities
24   URL:=http://www.gnu.org/software/coreutils/
25 endef
26         
27 define Package/coreutils/description
28         Full versions of standard GNU utilities.  Normally, you would not
29         use this package, since the functionality in BusyBox is more than
30         sufficient and much smaller.
31 endef
32
33 CONFIGURE_VARS += \
34         gl_cv_func_mbrtowc_incomplete_state=yes \
35         gl_cv_func_mbrtowc_retval=yes \
36         gl_cv_func_wcrtomb_retval=yes
37
38 CONFIGURE_ARGS += \
39         --enable-install-program=su
40
41 define Build/Compile
42         $(MAKE) -C $(PKG_BUILD_DIR) \
43                 DESTDIR="$(PKG_INSTALL_DIR)" \
44                 SHELL="/bin/bash" \
45                 all install install-root
46 endef
47
48 define Package/coreutils/install
49         $(INSTALL_DIR) $(1)/usr/bin
50         $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
51 endef
52
53 define Package/coreutils-base64
54   SECTION:utils
55   CATEGORY:=Utilities
56   TITLE:=Utility base64 from the GNU core utilites
57   URL:=http://www.gnu.org/software/coreutils/
58 endef
59
60 define Package/coreutils-base64/description
61         Full version of standard GNU base64 utility.  Normally, you would not
62         use this package, since the functionality in BusyBox is more than
63         sufficient.
64 endef
65
66 define Package/coreutils-base64/install
67         $(INSTALL_DIR) $(1)/usr/bin
68         $(CP) $(PKG_INSTALL_DIR)/usr/bin/base64 $(1)/usr/bin/
69 endef
70
71 define Package/coreutils-basename
72   SECTION:utils
73   CATEGORY:=Utilities
74   TITLE:=Utility basename from the GNU core utilites
75   URL:=http://www.gnu.org/software/coreutils/
76 endef
77
78 define Package/coreutils-basename/description
79         Full version of standard GNU basename utility.  Normally, you would not
80         use this package, since the functionality in BusyBox is more than
81         sufficient.
82 endef
83
84 define Package/coreutils-basename/install
85         $(INSTALL_DIR) $(1)/usr/bin
86         $(CP) $(PKG_INSTALL_DIR)/usr/bin/basename $(1)/usr/bin/
87 endef
88
89 define Package/coreutils-cat
90   SECTION:utils
91   CATEGORY:=Utilities
92   TITLE:=Utility cat from the GNU core utilites
93   URL:=http://www.gnu.org/software/coreutils/
94 endef
95
96 define Package/coreutils-cat/description
97         Full version of standard GNU cat utility.  Normally, you would not
98         use this package, since the functionality in BusyBox is more than
99         sufficient.
100 endef
101
102 define Package/coreutils-cat/install
103         $(INSTALL_DIR) $(1)/usr/bin
104         $(CP) $(PKG_INSTALL_DIR)/usr/bin/cat $(1)/usr/bin/
105 endef
106
107 define Package/coreutils-chcon
108   SECTION:utils
109   CATEGORY:=Utilities
110   TITLE:=Utility chcon from the GNU core utilites
111   URL:=http://www.gnu.org/software/coreutils/
112 endef
113
114 define Package/coreutils-chcon/description
115         Full version of standard GNU chcon utility.  Normally, you would not
116         use this package, since the functionality in BusyBox is more than
117         sufficient.
118 endef
119
120 define Package/coreutils-chcon/install
121         $(INSTALL_DIR) $(1)/usr/bin
122         $(CP) $(PKG_INSTALL_DIR)/usr/bin/chcon $(1)/usr/bin/
123 endef
124
125 define Package/coreutils-chgrp
126   SECTION:utils
127   CATEGORY:=Utilities
128   TITLE:=Utility chgrp from the GNU core utilites
129   URL:=http://www.gnu.org/software/coreutils/
130 endef
131
132 define Package/coreutils-chgrp/description
133         Full version of standard GNU chgrp utility.  Normally, you would not
134         use this package, since the functionality in BusyBox is more than
135         sufficient.
136 endef
137
138 define Package/coreutils-chgrp/install
139         $(INSTALL_DIR) $(1)/usr/bin
140         $(CP) $(PKG_INSTALL_DIR)/usr/bin/chgrp $(1)/usr/bin/
141 endef
142
143 define Package/coreutils-chmod
144   SECTION:utils
145   CATEGORY:=Utilities
146   TITLE:=Utility chmod from the GNU core utilites
147   URL:=http://www.gnu.org/software/coreutils/
148 endef
149
150 define Package/coreutils-chmod/description
151         Full version of standard GNU chmod utility.  Normally, you would not
152         use this package, since the functionality in BusyBox is more than
153         sufficient.
154 endef
155
156 define Package/coreutils-chmod/install
157         $(INSTALL_DIR) $(1)/usr/bin
158         $(CP) $(PKG_INSTALL_DIR)/usr/bin/chmod $(1)/usr/bin/
159 endef
160
161 define Package/coreutils-chown
162   SECTION:utils
163   CATEGORY:=Utilities
164   TITLE:=Utility chown from the GNU core utilites
165   URL:=http://www.gnu.org/software/coreutils/
166 endef
167
168 define Package/coreutils-chown/description
169         Full version of standard GNU chown utility.  Normally, you would not
170         use this package, since the functionality in BusyBox is more than
171         sufficient.
172 endef
173
174 define Package/coreutils-chown/install
175         $(INSTALL_DIR) $(1)/usr/bin
176         $(CP) $(PKG_INSTALL_DIR)/usr/bin/chown $(1)/usr/bin/
177 endef
178
179 define Package/coreutils-chroot
180   SECTION:utils
181   CATEGORY:=Utilities
182   TITLE:=Utility chroot from the GNU core utilites
183   URL:=http://www.gnu.org/software/coreutils/
184 endef
185
186 define Package/coreutils-chroot/description
187         Full version of standard GNU chroot utility.  Normally, you would not
188         use this package, since the functionality in BusyBox is more than
189         sufficient.
190 endef
191
192 define Package/coreutils-chroot/install
193         $(INSTALL_DIR) $(1)/usr/bin
194         $(CP) $(PKG_INSTALL_DIR)/usr/bin/chroot $(1)/usr/bin/
195 endef
196
197 define Package/coreutils-cksum
198   SECTION:utils
199   CATEGORY:=Utilities
200   TITLE:=Utility cksum from the GNU core utilites
201   URL:=http://www.gnu.org/software/coreutils/
202 endef
203
204 define Package/coreutils-cksum/description
205         Full version of standard GNU cksum utility.  Normally, you would not
206         use this package, since the functionality in BusyBox is more than
207         sufficient.
208 endef
209
210 define Package/coreutils-cksum/install
211         $(INSTALL_DIR) $(1)/usr/bin
212         $(CP) $(PKG_INSTALL_DIR)/usr/bin/cksum $(1)/usr/bin/
213 endef
214
215 define Package/coreutils-comm
216   SECTION:utils
217   CATEGORY:=Utilities
218   TITLE:=Utility comm from the GNU core utilites
219   URL:=http://www.gnu.org/software/coreutils/
220 endef
221
222 define Package/coreutils-comm/description
223         Full version of standard GNU comm utility.  Normally, you would not
224         use this package, since the functionality in BusyBox is more than
225         sufficient.
226 endef
227
228 define Package/coreutils-comm/install
229         $(INSTALL_DIR) $(1)/usr/bin
230         $(CP) $(PKG_INSTALL_DIR)/usr/bin/comm $(1)/usr/bin/
231 endef
232
233 define Package/coreutils-cp
234   SECTION:utils
235   CATEGORY:=Utilities
236   TITLE:=Utility cp from the GNU core utilites
237   URL:=http://www.gnu.org/software/coreutils/
238 endef
239
240 define Package/coreutils-cp/description
241         Full version of standard GNU cp utility.  Normally, you would not
242         use this package, since the functionality in BusyBox is more than
243         sufficient.
244 endef
245
246 define Package/coreutils-cp/install
247         $(INSTALL_DIR) $(1)/usr/bin
248         $(CP) $(PKG_INSTALL_DIR)/usr/bin/cp $(1)/usr/bin/
249 endef
250
251 define Package/coreutils-csplit
252   SECTION:utils
253   CATEGORY:=Utilities
254   TITLE:=Utility csplit from the GNU core utilites
255   URL:=http://www.gnu.org/software/coreutils/
256 endef
257
258 define Package/coreutils-csplit/description
259         Full version of standard GNU csplit utility.  Normally, you would not
260         use this package, since the functionality in BusyBox is more than
261         sufficient.
262 endef
263
264 define Package/coreutils-csplit/install
265         $(INSTALL_DIR) $(1)/usr/bin
266         $(CP) $(PKG_INSTALL_DIR)/usr/bin/csplit $(1)/usr/bin/
267 endef
268
269 define Package/coreutils-cut
270   SECTION:utils
271   CATEGORY:=Utilities
272   TITLE:=Utility cut from the GNU core utilites
273   URL:=http://www.gnu.org/software/coreutils/
274 endef
275
276 define Package/coreutils-cut/description
277         Full version of standard GNU cut utility.  Normally, you would not
278         use this package, since the functionality in BusyBox is more than
279         sufficient.
280 endef
281
282 define Package/coreutils-cut/install
283         $(INSTALL_DIR) $(1)/usr/bin
284         $(CP) $(PKG_INSTALL_DIR)/usr/bin/cut $(1)/usr/bin/
285 endef
286
287 define Package/coreutils-date
288   SECTION:utils
289   CATEGORY:=Utilities
290   TITLE:=Utility date from the GNU core utilites
291   URL:=http://www.gnu.org/software/coreutils/
292 endef
293
294 define Package/coreutils-date/description
295         Full version of standard GNU date utility.  Normally, you would not
296         use this package, since the functionality in BusyBox is more than
297         sufficient.
298 endef
299
300 define Package/coreutils-date/install
301         $(INSTALL_DIR) $(1)/usr/bin
302         $(CP) $(PKG_INSTALL_DIR)/usr/bin/date $(1)/usr/bin/
303 endef
304
305 define Package/coreutils-dd
306   SECTION:utils
307   CATEGORY:=Utilities
308   TITLE:=Utility dd from the GNU core utilites
309   URL:=http://www.gnu.org/software/coreutils/
310 endef
311
312 define Package/coreutils-dd/description
313         Full version of standard GNU dd utility.  Normally, you would not
314         use this package, since the functionality in BusyBox is more than
315         sufficient.
316 endef
317
318 define Package/coreutils-dd/install
319         $(INSTALL_DIR) $(1)/usr/bin
320         $(CP) $(PKG_INSTALL_DIR)/usr/bin/dd $(1)/usr/bin/
321 endef
322
323 define Package/coreutils-dir
324   SECTION:utils
325   CATEGORY:=Utilities
326   TITLE:=Utility dir from the GNU core utilites
327   URL:=http://www.gnu.org/software/coreutils/
328 endef
329
330 define Package/coreutils-dir/description
331         Full version of standard GNU dir utility.  Normally, you would not
332         use this package, since the functionality in BusyBox is more than
333         sufficient.
334 endef
335
336 define Package/coreutils-dir/install
337         $(INSTALL_DIR) $(1)/usr/bin
338         $(CP) $(PKG_INSTALL_DIR)/usr/bin/dir $(1)/usr/bin/
339 endef
340
341 define Package/coreutils-dircolors
342   SECTION:utils
343   CATEGORY:=Utilities
344   TITLE:=Utility dircolors from the GNU core utilites
345   URL:=http://www.gnu.org/software/coreutils/
346 endef
347
348 define Package/coreutils-dircolors/description
349         Full version of standard GNU dircolors utility.  Normally, you would not
350         use this package, since the functionality in BusyBox is more than
351         sufficient.
352 endef
353
354 define Package/coreutils-dircolors/install
355         $(INSTALL_DIR) $(1)/usr/bin
356         $(CP) $(PKG_INSTALL_DIR)/usr/bin/dircolors $(1)/usr/bin/
357 endef
358
359 define Package/coreutils-dirname
360   SECTION:utils
361   CATEGORY:=Utilities
362   TITLE:=Utility dirname from the GNU core utilites
363   URL:=http://www.gnu.org/software/coreutils/
364 endef
365
366 define Package/coreutils-dirname/description
367         Full version of standard GNU dirname utility.  Normally, you would not
368         use this package, since the functionality in BusyBox is more than
369         sufficient.
370 endef
371
372 define Package/coreutils-dirname/install
373         $(INSTALL_DIR) $(1)/usr/bin
374         $(CP) $(PKG_INSTALL_DIR)/usr/bin/dirname $(1)/usr/bin/
375 endef
376
377 define Package/coreutils-du
378   SECTION:utils
379   CATEGORY:=Utilities
380   TITLE:=Utility du from the GNU core utilites
381   URL:=http://www.gnu.org/software/coreutils/
382 endef
383
384 define Package/coreutils-du/description
385         Full version of standard GNU du utility.  Normally, you would not
386         use this package, since the functionality in BusyBox is more than
387         sufficient.
388 endef
389
390 define Package/coreutils-du/install
391         $(INSTALL_DIR) $(1)/usr/bin
392         $(CP) $(PKG_INSTALL_DIR)/usr/bin/du $(1)/usr/bin/
393 endef
394
395 define Package/coreutils-echo
396   SECTION:utils
397   CATEGORY:=Utilities
398   TITLE:=Utility echo from the GNU core utilites
399   URL:=http://www.gnu.org/software/coreutils/
400 endef
401
402 define Package/coreutils-echo/description
403         Full version of standard GNU echo utility.  Normally, you would not
404         use this package, since the functionality in BusyBox is more than
405         sufficient.
406 endef
407
408 define Package/coreutils-echo/install
409         $(INSTALL_DIR) $(1)/usr/bin
410         $(CP) $(PKG_INSTALL_DIR)/usr/bin/echo $(1)/usr/bin/
411 endef
412
413 define Package/coreutils-env
414   SECTION:utils
415   CATEGORY:=Utilities
416   TITLE:=Utility env from the GNU core utilites
417   URL:=http://www.gnu.org/software/coreutils/
418 endef
419
420 define Package/coreutils-env/description
421         Full version of standard GNU env utility.  Normally, you would not
422         use this package, since the functionality in BusyBox is more than
423         sufficient.
424 endef
425
426 define Package/coreutils-env/install
427         $(INSTALL_DIR) $(1)/usr/bin
428         $(CP) $(PKG_INSTALL_DIR)/usr/bin/env $(1)/usr/bin/
429 endef
430
431 define Package/coreutils-expand
432   SECTION:utils
433   CATEGORY:=Utilities
434   TITLE:=Utility expand from the GNU core utilites
435   URL:=http://www.gnu.org/software/coreutils/
436 endef
437
438 define Package/coreutils-expand/description
439         Full version of standard GNU expand utility.  Normally, you would not
440         use this package, since the functionality in BusyBox is more than
441         sufficient.
442 endef
443
444 define Package/coreutils-expand/install
445         $(INSTALL_DIR) $(1)/usr/bin
446         $(CP) $(PKG_INSTALL_DIR)/usr/bin/expand $(1)/usr/bin/
447 endef
448
449 define Package/coreutils-expr
450   SECTION:utils
451   CATEGORY:=Utilities
452   TITLE:=Utility expr from the GNU core utilites
453   URL:=http://www.gnu.org/software/coreutils/
454 endef
455
456 define Package/coreutils-expr/description
457         Full version of standard GNU expr utility.  Normally, you would not
458         use this package, since the functionality in BusyBox is more than
459         sufficient.
460 endef
461
462 define Package/coreutils-expr/install
463         $(INSTALL_DIR) $(1)/usr/bin
464         $(CP) $(PKG_INSTALL_DIR)/usr/bin/expr $(1)/usr/bin/
465 endef
466
467 define Package/coreutils-factor
468   SECTION:utils
469   CATEGORY:=Utilities
470   TITLE:=Utility factor from the GNU core utilites
471   URL:=http://www.gnu.org/software/coreutils/
472 endef
473
474 define Package/coreutils-factor/description
475         Full version of standard GNU factor utility.  Normally, you would not
476         use this package, since the functionality in BusyBox is more than
477         sufficient.
478 endef
479
480 define Package/coreutils-factor/install
481         $(INSTALL_DIR) $(1)/usr/bin
482         $(CP) $(PKG_INSTALL_DIR)/usr/bin/factor $(1)/usr/bin/
483 endef
484
485 define Package/coreutils-false
486   SECTION:utils
487   CATEGORY:=Utilities
488   TITLE:=Utility false from the GNU core utilites
489   URL:=http://www.gnu.org/software/coreutils/
490 endef
491
492 define Package/coreutils-false/description
493         Full version of standard GNU false utility.  Normally, you would not
494         use this package, since the functionality in BusyBox is more than
495         sufficient.
496 endef
497
498 define Package/coreutils-false/install
499         $(INSTALL_DIR) $(1)/usr/bin
500         $(CP) $(PKG_INSTALL_DIR)/usr/bin/false $(1)/usr/bin/
501 endef
502
503 define Package/coreutils-fmt
504   SECTION:utils
505   CATEGORY:=Utilities
506   TITLE:=Utility fmt from the GNU core utilites
507   URL:=http://www.gnu.org/software/coreutils/
508 endef
509
510 define Package/coreutils-fmt/description
511         Full version of standard GNU fmt utility.  Normally, you would not
512         use this package, since the functionality in BusyBox is more than
513         sufficient.
514 endef
515
516 define Package/coreutils-fmt/install
517         $(INSTALL_DIR) $(1)/usr/bin
518         $(CP) $(PKG_INSTALL_DIR)/usr/bin/fmt $(1)/usr/bin/
519 endef
520
521 define Package/coreutils-fold
522   SECTION:utils
523   CATEGORY:=Utilities
524   TITLE:=Utility fold from the GNU core utilites
525   URL:=http://www.gnu.org/software/coreutils/
526 endef
527
528 define Package/coreutils-fold/description
529         Full version of standard GNU fold utility.  Normally, you would not
530         use this package, since the functionality in BusyBox is more than
531         sufficient.
532 endef
533
534 define Package/coreutils-fold/install
535         $(INSTALL_DIR) $(1)/usr/bin
536         $(CP) $(PKG_INSTALL_DIR)/usr/bin/fold $(1)/usr/bin/
537 endef
538
539 define Package/coreutils-groups
540   SECTION:utils
541   CATEGORY:=Utilities
542   TITLE:=Utility groups from the GNU core utilites
543   URL:=http://www.gnu.org/software/coreutils/
544 endef
545
546 define Package/coreutils-groups/description
547         Full version of standard GNU groups utility.  Normally, you would not
548         use this package, since the functionality in BusyBox is more than
549         sufficient.
550 endef
551
552 define Package/coreutils-groups/install
553         $(INSTALL_DIR) $(1)/usr/bin
554         $(CP) $(PKG_INSTALL_DIR)/usr/bin/groups $(1)/usr/bin/
555 endef
556
557 define Package/coreutils-head
558   SECTION:utils
559   CATEGORY:=Utilities
560   TITLE:=Utility head from the GNU core utilites
561   URL:=http://www.gnu.org/software/coreutils/
562 endef
563
564 define Package/coreutils-head/description
565         Full version of standard GNU head utility.  Normally, you would not
566         use this package, since the functionality in BusyBox is more than
567         sufficient.
568 endef
569
570 define Package/coreutils-head/install
571         $(INSTALL_DIR) $(1)/usr/bin
572         $(CP) $(PKG_INSTALL_DIR)/usr/bin/head $(1)/usr/bin/
573 endef
574
575 define Package/coreutils-hostid
576   SECTION:utils
577   CATEGORY:=Utilities
578   TITLE:=Utility hostid from the GNU core utilites
579   URL:=http://www.gnu.org/software/coreutils/
580 endef
581
582 define Package/coreutils-hostid/description
583         Full version of standard GNU hostid utility.  Normally, you would not
584         use this package, since the functionality in BusyBox is more than
585         sufficient.
586 endef
587
588 define Package/coreutils-hostid/install
589         $(INSTALL_DIR) $(1)/usr/bin
590         $(CP) $(PKG_INSTALL_DIR)/usr/bin/hostid $(1)/usr/bin/
591 endef
592
593 define Package/coreutils-id
594   SECTION:utils
595   CATEGORY:=Utilities
596   TITLE:=Utility id from the GNU core utilites
597   URL:=http://www.gnu.org/software/coreutils/
598 endef
599
600 define Package/coreutils-id/description
601         Full version of standard GNU id utility.  Normally, you would not
602         use this package, since the functionality in BusyBox is more than
603         sufficient.
604 endef
605
606 define Package/coreutils-id/install
607         $(INSTALL_DIR) $(1)/usr/bin
608         $(CP) $(PKG_INSTALL_DIR)/usr/bin/id $(1)/usr/bin/
609 endef
610
611 define Package/coreutils-install
612   SECTION:utils
613   CATEGORY:=Utilities
614   TITLE:=Utility install from the GNU core utilites
615   URL:=http://www.gnu.org/software/coreutils/
616 endef
617
618 define Package/coreutils-install/description
619         Full version of standard GNU install utility.  Normally, you would not
620         use this package, since the functionality in BusyBox is more than
621         sufficient.
622 endef
623
624 define Package/coreutils-install/install
625         $(INSTALL_DIR) $(1)/usr/bin
626         $(CP) $(PKG_INSTALL_DIR)/usr/bin/install $(1)/usr/bin/
627 endef
628
629 define Package/coreutils-join
630   SECTION:utils
631   CATEGORY:=Utilities
632   TITLE:=Utility join from the GNU core utilites
633   URL:=http://www.gnu.org/software/coreutils/
634 endef
635
636 define Package/coreutils-join/description
637         Full version of standard GNU join utility.  Normally, you would not
638         use this package, since the functionality in BusyBox is more than
639         sufficient.
640 endef
641
642 define Package/coreutils-join/install
643         $(INSTALL_DIR) $(1)/usr/bin
644         $(CP) $(PKG_INSTALL_DIR)/usr/bin/join $(1)/usr/bin/
645 endef
646
647 define Package/coreutils-kill
648   SECTION:utils
649   CATEGORY:=Utilities
650   TITLE:=Utility kill from the GNU core utilites
651   URL:=http://www.gnu.org/software/coreutils/
652 endef
653
654 define Package/coreutils-kill/description
655         Full version of standard GNU kill utility.  Normally, you would not
656         use this package, since the functionality in BusyBox is more than
657         sufficient.
658 endef
659
660 define Package/coreutils-kill/install
661         $(INSTALL_DIR) $(1)/usr/bin
662         $(CP) $(PKG_INSTALL_DIR)/usr/bin/kill $(1)/usr/bin/
663 endef
664
665 define Package/coreutils-link
666   SECTION:utils
667   CATEGORY:=Utilities
668   TITLE:=Utility link from the GNU core utilites
669   URL:=http://www.gnu.org/software/coreutils/
670 endef
671
672 define Package/coreutils-link/description
673         Full version of standard GNU link utility.  Normally, you would not
674         use this package, since the functionality in BusyBox is more than
675         sufficient.
676 endef
677
678 define Package/coreutils-link/install
679         $(INSTALL_DIR) $(1)/usr/bin
680         $(CP) $(PKG_INSTALL_DIR)/usr/bin/link $(1)/usr/bin/
681 endef
682
683 define Package/coreutils-ln
684   SECTION:utils
685   CATEGORY:=Utilities
686   TITLE:=Utility ln from the GNU core utilites
687   URL:=http://www.gnu.org/software/coreutils/
688 endef
689
690 define Package/coreutils-ln/description
691         Full version of standard GNU ln utility.  Normally, you would not
692         use this package, since the functionality in BusyBox is more than
693         sufficient.
694 endef
695
696 define Package/coreutils-ln/install
697         $(INSTALL_DIR) $(1)/usr/bin
698         $(CP) $(PKG_INSTALL_DIR)/usr/bin/ln $(1)/usr/bin/
699 endef
700
701 define Package/coreutils-logname
702   SECTION:utils
703   CATEGORY:=Utilities
704   TITLE:=Utility logname from the GNU core utilites
705   URL:=http://www.gnu.org/software/coreutils/
706 endef
707
708 define Package/coreutils-logname/description
709         Full version of standard GNU logname utility.  Normally, you would not
710         use this package, since the functionality in BusyBox is more than
711         sufficient.
712 endef
713
714 define Package/coreutils-logname/install
715         $(INSTALL_DIR) $(1)/usr/bin
716         $(CP) $(PKG_INSTALL_DIR)/usr/bin/logname $(1)/usr/bin/
717 endef
718
719 define Package/coreutils-ls
720   SECTION:utils
721   CATEGORY:=Utilities
722   TITLE:=Utility ls from the GNU core utilites
723   URL:=http://www.gnu.org/software/coreutils/
724 endef
725
726 define Package/coreutils-ls/description
727         Full version of standard GNU ls utility.  Normally, you would not
728         use this package, since the functionality in BusyBox is more than
729         sufficient.
730 endef
731
732 define Package/coreutils-ls/install
733         $(INSTALL_DIR) $(1)/usr/bin
734         $(CP) $(PKG_INSTALL_DIR)/usr/bin/ls $(1)/usr/bin/
735 endef
736
737 define Package/coreutils-md5sum
738   SECTION:utils
739   CATEGORY:=Utilities
740   TITLE:=Utility md5sum from the GNU core utilites
741   URL:=http://www.gnu.org/software/coreutils/
742 endef
743
744 define Package/coreutils-md5sum/description
745         Full version of standard GNU md5sum utility.  Normally, you would not
746         use this package, since the functionality in BusyBox is more than
747         sufficient.
748 endef
749
750 define Package/coreutils-md5sum/install
751         $(INSTALL_DIR) $(1)/usr/bin
752         $(CP) $(PKG_INSTALL_DIR)/usr/bin/md5sum $(1)/usr/bin/
753 endef
754
755 define Package/coreutils-mkdir
756   SECTION:utils
757   CATEGORY:=Utilities
758   TITLE:=Utility mkdir from the GNU core utilites
759   URL:=http://www.gnu.org/software/coreutils/
760 endef
761
762 define Package/coreutils-mkdir/description
763         Full version of standard GNU mkdir utility.  Normally, you would not
764         use this package, since the functionality in BusyBox is more than
765         sufficient.
766 endef
767
768 define Package/coreutils-mkdir/install
769         $(INSTALL_DIR) $(1)/usr/bin
770         $(CP) $(PKG_INSTALL_DIR)/usr/bin/mkdir $(1)/usr/bin/
771 endef
772
773 define Package/coreutils-mkfifo
774   SECTION:utils
775   CATEGORY:=Utilities
776   TITLE:=Utility mkfifo from the GNU core utilites
777   URL:=http://www.gnu.org/software/coreutils/
778 endef
779
780 define Package/coreutils-mkfifo/description
781         Full version of standard GNU mkfifo utility.  Normally, you would not
782         use this package, since the functionality in BusyBox is more than
783         sufficient.
784 endef
785
786 define Package/coreutils-mkfifo/install
787         $(INSTALL_DIR) $(1)/usr/bin
788         $(CP) $(PKG_INSTALL_DIR)/usr/bin/mkfifo $(1)/usr/bin/
789 endef
790
791 define Package/coreutils-mknod
792   SECTION:utils
793   CATEGORY:=Utilities
794   TITLE:=Utility mknod from the GNU core utilites
795   URL:=http://www.gnu.org/software/coreutils/
796 endef
797
798 define Package/coreutils-mknod/description
799         Full version of standard GNU mknod utility.  Normally, you would not
800         use this package, since the functionality in BusyBox is more than
801         sufficient.
802 endef
803
804 define Package/coreutils-mknod/install
805         $(INSTALL_DIR) $(1)/usr/bin
806         $(CP) $(PKG_INSTALL_DIR)/usr/bin/mknod $(1)/usr/bin/
807 endef
808
809 define Package/coreutils-mktemp
810   SECTION:utils
811   CATEGORY:=Utilities
812   TITLE:=Utility mktemp from the GNU core utilites
813   URL:=http://www.gnu.org/software/coreutils/
814 endef
815
816 define Package/coreutils-mktemp/description
817         Full version of standard GNU mktemp utility.  Normally, you would not
818         use this package, since the functionality in BusyBox is more than
819         sufficient.
820 endef
821
822 define Package/coreutils-mktemp/install
823         $(INSTALL_DIR) $(1)/usr/bin
824         $(CP) $(PKG_INSTALL_DIR)/usr/bin/mktemp $(1)/usr/bin/
825 endef
826
827 define Package/coreutils-mv
828   SECTION:utils
829   CATEGORY:=Utilities
830   TITLE:=Utility mv from the GNU core utilites
831   URL:=http://www.gnu.org/software/coreutils/
832 endef
833
834 define Package/coreutils-mv/description
835         Full version of standard GNU mv utility.  Normally, you would not
836         use this package, since the functionality in BusyBox is more than
837         sufficient.
838 endef
839
840 define Package/coreutils-mv/install
841         $(INSTALL_DIR) $(1)/usr/bin
842         $(CP) $(PKG_INSTALL_DIR)/usr/bin/mv $(1)/usr/bin/
843 endef
844
845 define Package/coreutils-nice
846   SECTION:utils
847   CATEGORY:=Utilities
848   TITLE:=Utility nice from the GNU core utilites
849   URL:=http://www.gnu.org/software/coreutils/
850 endef
851
852 define Package/coreutils-nice/description
853         Full version of standard GNU nice utility.  Normally, you would not
854         use this package, since the functionality in BusyBox is more than
855         sufficient.
856 endef
857
858 define Package/coreutils-nice/install
859         $(INSTALL_DIR) $(1)/usr/bin
860         $(CP) $(PKG_INSTALL_DIR)/usr/bin/nice $(1)/usr/bin/
861 endef
862
863 define Package/coreutils-nl
864   SECTION:utils
865   CATEGORY:=Utilities
866   TITLE:=Utility nl from the GNU core utilites
867   URL:=http://www.gnu.org/software/coreutils/
868 endef
869
870 define Package/coreutils-nl/description
871         Full version of standard GNU nl utility.  Normally, you would not
872         use this package, since the functionality in BusyBox is more than
873         sufficient.
874 endef
875
876 define Package/coreutils-nl/install
877         $(INSTALL_DIR) $(1)/usr/bin
878         $(CP) $(PKG_INSTALL_DIR)/usr/bin/nl $(1)/usr/bin/
879 endef
880
881 define Package/coreutils-nohup
882   SECTION:utils
883   CATEGORY:=Utilities
884   TITLE:=Utility nohup from the GNU core utilites
885   URL:=http://www.gnu.org/software/coreutils/
886 endef
887
888 define Package/coreutils-nohup/description
889         Full version of standard GNU nohup utility.  Normally, you would not
890         use this package, since the functionality in BusyBox is more than
891         sufficient.
892 endef
893
894 define Package/coreutils-nohup/install
895         $(INSTALL_DIR) $(1)/usr/bin
896         $(CP) $(PKG_INSTALL_DIR)/usr/bin/nohup $(1)/usr/bin/
897 endef
898
899 define Package/coreutils-od
900   SECTION:utils
901   CATEGORY:=Utilities
902   TITLE:=Utility od from the GNU core utilites
903   URL:=http://www.gnu.org/software/coreutils/
904 endef
905
906 define Package/coreutils-od/description
907         Full version of standard GNU od utility.  Normally, you would not
908         use this package, since the functionality in BusyBox is more than
909         sufficient.
910 endef
911
912 define Package/coreutils-od/install
913         $(INSTALL_DIR) $(1)/usr/bin
914         $(CP) $(PKG_INSTALL_DIR)/usr/bin/od $(1)/usr/bin/
915 endef
916
917 define Package/coreutils-paste
918   SECTION:utils
919   CATEGORY:=Utilities
920   TITLE:=Utility paste from the GNU core utilites
921   URL:=http://www.gnu.org/software/coreutils/
922 endef
923
924 define Package/coreutils-paste/description
925         Full version of standard GNU paste utility.  Normally, you would not
926         use this package, since the functionality in BusyBox is more than
927         sufficient.
928 endef
929
930 define Package/coreutils-paste/install
931         $(INSTALL_DIR) $(1)/usr/bin
932         $(CP) $(PKG_INSTALL_DIR)/usr/bin/paste $(1)/usr/bin/
933 endef
934
935 define Package/coreutils-pathchk
936   SECTION:utils
937   CATEGORY:=Utilities
938   TITLE:=Utility pathchk from the GNU core utilites
939   URL:=http://www.gnu.org/software/coreutils/
940 endef
941
942 define Package/coreutils-pathchk/description
943         Full version of standard GNU pathchk utility.  Normally, you would not
944         use this package, since the functionality in BusyBox is more than
945         sufficient.
946 endef
947
948 define Package/coreutils-pathchk/install
949         $(INSTALL_DIR) $(1)/usr/bin
950         $(CP) $(PKG_INSTALL_DIR)/usr/bin/pathchk $(1)/usr/bin/
951 endef
952
953 define Package/coreutils-pinky
954   SECTION:utils
955   CATEGORY:=Utilities
956   TITLE:=Utility pinky from the GNU core utilites
957   URL:=http://www.gnu.org/software/coreutils/
958 endef
959
960 define Package/coreutils-pinky/description
961         Full version of standard GNU pinky utility.  Normally, you would not
962         use this package, since the functionality in BusyBox is more than
963         sufficient.
964 endef
965
966 define Package/coreutils-pinky/install
967         $(INSTALL_DIR) $(1)/usr/bin
968         $(CP) $(PKG_INSTALL_DIR)/usr/bin/pinky $(1)/usr/bin/
969 endef
970
971 define Package/coreutils-pr
972   SECTION:utils
973   CATEGORY:=Utilities
974   TITLE:=Utility pr from the GNU core utilites
975   URL:=http://www.gnu.org/software/coreutils/
976 endef
977
978 define Package/coreutils-pr/description
979         Full version of standard GNU pr utility.  Normally, you would not
980         use this package, since the functionality in BusyBox is more than
981         sufficient.
982 endef
983
984 define Package/coreutils-pr/install
985         $(INSTALL_DIR) $(1)/usr/bin
986         $(CP) $(PKG_INSTALL_DIR)/usr/bin/pr $(1)/usr/bin/
987 endef
988
989 define Package/coreutils-printenv
990   SECTION:utils
991   CATEGORY:=Utilities
992   TITLE:=Utility printenv from the GNU core utilites
993   URL:=http://www.gnu.org/software/coreutils/
994 endef
995
996 define Package/coreutils-printenv/description
997         Full version of standard GNU printenv utility.  Normally, you would not
998         use this package, since the functionality in BusyBox is more than
999         sufficient.
1000 endef
1001
1002 define Package/coreutils-printenv/install
1003         $(INSTALL_DIR) $(1)/usr/bin
1004         $(CP) $(PKG_INSTALL_DIR)/usr/bin/printenv $(1)/usr/bin/
1005 endef
1006
1007 define Package/coreutils-printf
1008   SECTION:utils
1009   CATEGORY:=Utilities
1010   TITLE:=Utility printf from the GNU core utilites
1011   URL:=http://www.gnu.org/software/coreutils/
1012 endef
1013
1014 define Package/coreutils-printf/description
1015         Full version of standard GNU printf utility.  Normally, you would not
1016         use this package, since the functionality in BusyBox is more than
1017         sufficient.
1018 endef
1019
1020 define Package/coreutils-printf/install
1021         $(INSTALL_DIR) $(1)/usr/bin
1022         $(CP) $(PKG_INSTALL_DIR)/usr/bin/printf $(1)/usr/bin/
1023 endef
1024
1025 define Package/coreutils-ptx
1026   SECTION:utils
1027   CATEGORY:=Utilities
1028   TITLE:=Utility ptx from the GNU core utilites
1029   URL:=http://www.gnu.org/software/coreutils/
1030 endef
1031
1032 define Package/coreutils-ptx/description
1033         Full version of standard GNU ptx utility.  Normally, you would not
1034         use this package, since the functionality in BusyBox is more than
1035         sufficient.
1036 endef
1037
1038 define Package/coreutils-ptx/install
1039         $(INSTALL_DIR) $(1)/usr/bin
1040         $(CP) $(PKG_INSTALL_DIR)/usr/bin/ptx $(1)/usr/bin/
1041 endef
1042
1043 define Package/coreutils-pwd
1044   SECTION:utils
1045   CATEGORY:=Utilities
1046   TITLE:=Utility pwd from the GNU core utilites
1047   URL:=http://www.gnu.org/software/coreutils/
1048 endef
1049
1050 define Package/coreutils-pwd/description
1051         Full version of standard GNU pwd utility.  Normally, you would not
1052         use this package, since the functionality in BusyBox is more than
1053         sufficient.
1054 endef
1055
1056 define Package/coreutils-pwd/install
1057         $(INSTALL_DIR) $(1)/usr/bin
1058         $(CP) $(PKG_INSTALL_DIR)/usr/bin/pwd $(1)/usr/bin/
1059 endef
1060
1061 define Package/coreutils-readlink
1062   SECTION:utils
1063   CATEGORY:=Utilities
1064   TITLE:=Utility readlink from the GNU core utilites
1065   URL:=http://www.gnu.org/software/coreutils/
1066 endef
1067
1068 define Package/coreutils-readlink/description
1069         Full version of standard GNU readlink utility.  Normally, you would not
1070         use this package, since the functionality in BusyBox is more than
1071         sufficient.
1072 endef
1073
1074 define Package/coreutils-readlink/install
1075         $(INSTALL_DIR) $(1)/usr/bin
1076         $(CP) $(PKG_INSTALL_DIR)/usr/bin/readlink $(1)/usr/bin/
1077 endef
1078
1079 define Package/coreutils-rm
1080   SECTION:utils
1081   CATEGORY:=Utilities
1082   TITLE:=Utility rm from the GNU core utilites
1083   URL:=http://www.gnu.org/software/coreutils/
1084 endef
1085
1086 define Package/coreutils-rm/description
1087         Full version of standard GNU rm utility.  Normally, you would not
1088         use this package, since the functionality in BusyBox is more than
1089         sufficient.
1090 endef
1091
1092 define Package/coreutils-rm/install
1093         $(INSTALL_DIR) $(1)/usr/bin
1094         $(CP) $(PKG_INSTALL_DIR)/usr/bin/rm $(1)/usr/bin/
1095 endef
1096
1097 define Package/coreutils-rmdir
1098   SECTION:utils
1099   CATEGORY:=Utilities
1100   TITLE:=Utility rmdir from the GNU core utilites
1101   URL:=http://www.gnu.org/software/coreutils/
1102 endef
1103
1104 define Package/coreutils-rmdir/description
1105         Full version of standard GNU rmdir utility.  Normally, you would not
1106         use this package, since the functionality in BusyBox is more than
1107         sufficient.
1108 endef
1109
1110 define Package/coreutils-rmdir/install
1111         $(INSTALL_DIR) $(1)/usr/bin
1112         $(CP) $(PKG_INSTALL_DIR)/usr/bin/rmdir $(1)/usr/bin/
1113 endef
1114
1115 define Package/coreutils-runcon
1116   SECTION:utils
1117   CATEGORY:=Utilities
1118   TITLE:=Utility runcon from the GNU core utilites
1119   URL:=http://www.gnu.org/software/coreutils/
1120 endef
1121
1122 define Package/coreutils-runcon/description
1123         Full version of standard GNU runcon utility.  Normally, you would not
1124         use this package, since the functionality in BusyBox is more than
1125         sufficient.
1126 endef
1127
1128 define Package/coreutils-runcon/install
1129         $(INSTALL_DIR) $(1)/usr/bin
1130         $(CP) $(PKG_INSTALL_DIR)/usr/bin/runcon $(1)/usr/bin/
1131 endef
1132
1133 define Package/coreutils-seq
1134   SECTION:utils
1135   CATEGORY:=Utilities
1136   TITLE:=Utility seq from the GNU core utilites
1137   URL:=http://www.gnu.org/software/coreutils/
1138 endef
1139
1140 define Package/coreutils-seq/description
1141         Full version of standard GNU seq utility.  Normally, you would not
1142         use this package, since the functionality in BusyBox is more than
1143         sufficient.
1144 endef
1145
1146 define Package/coreutils-seq/install
1147         $(INSTALL_DIR) $(1)/usr/bin
1148         $(CP) $(PKG_INSTALL_DIR)/usr/bin/seq $(1)/usr/bin/
1149 endef
1150
1151 define Package/coreutils-sha1sum
1152   SECTION:utils
1153   CATEGORY:=Utilities
1154   TITLE:=Utility sha1sum from the GNU core utilites
1155   URL:=http://www.gnu.org/software/coreutils/
1156 endef
1157
1158 define Package/coreutils-sha1sum/description
1159         Full version of standard GNU sha1sum utility.  Normally, you would not
1160         use this package, since the functionality in BusyBox is more than
1161         sufficient.
1162 endef
1163
1164 define Package/coreutils-sha1sum/install
1165         $(INSTALL_DIR) $(1)/usr/bin
1166         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sha1sum $(1)/usr/bin/
1167 endef
1168
1169 define Package/coreutils-sha224sum
1170   SECTION:utils
1171   CATEGORY:=Utilities
1172   TITLE:=Utility sha224sum from the GNU core utilites
1173   URL:=http://www.gnu.org/software/coreutils/
1174 endef
1175
1176 define Package/coreutils-sha224sum/description
1177         Full version of standard GNU sha224sum utility.  Normally, you would not
1178         use this package, since the functionality in BusyBox is more than
1179         sufficient.
1180 endef
1181
1182 define Package/coreutils-sha224sum/install
1183         $(INSTALL_DIR) $(1)/usr/bin
1184         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sha224sum $(1)/usr/bin/
1185 endef
1186
1187 define Package/coreutils-sha256sum
1188   SECTION:utils
1189   CATEGORY:=Utilities
1190   TITLE:=Utility sha256sum from the GNU core utilites
1191   URL:=http://www.gnu.org/software/coreutils/
1192 endef
1193
1194 define Package/coreutils-sha256sum/description
1195         Full version of standard GNU sha256sum utility.  Normally, you would not
1196         use this package, since the functionality in BusyBox is more than
1197         sufficient.
1198 endef
1199
1200 define Package/coreutils-sha256sum/install
1201         $(INSTALL_DIR) $(1)/usr/bin
1202         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sha256sum $(1)/usr/bin/
1203 endef
1204
1205 define Package/coreutils-sha384sum
1206   SECTION:utils
1207   CATEGORY:=Utilities
1208   TITLE:=Utility sha384sum from the GNU core utilites
1209   URL:=http://www.gnu.org/software/coreutils/
1210 endef
1211
1212 define Package/coreutils-sha384sum/description
1213         Full version of standard GNU sha384sum utility.  Normally, you would not
1214         use this package, since the functionality in BusyBox is more than
1215         sufficient.
1216 endef
1217
1218 define Package/coreutils-sha384sum/install
1219         $(INSTALL_DIR) $(1)/usr/bin
1220         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sha384sum $(1)/usr/bin/
1221 endef
1222
1223 define Package/coreutils-sha512sum
1224   SECTION:utils
1225   CATEGORY:=Utilities
1226   TITLE:=Utility sha512sum from the GNU core utilites
1227   URL:=http://www.gnu.org/software/coreutils/
1228 endef
1229
1230 define Package/coreutils-sha512sum/description
1231         Full version of standard GNU sha512sum utility.  Normally, you would not
1232         use this package, since the functionality in BusyBox is more than
1233         sufficient.
1234 endef
1235
1236 define Package/coreutils-sha512sum/install
1237         $(INSTALL_DIR) $(1)/usr/bin
1238         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sha512sum $(1)/usr/bin/
1239 endef
1240
1241 define Package/coreutils-shred
1242   SECTION:utils
1243   CATEGORY:=Utilities
1244   TITLE:=Utility shred from the GNU core utilites
1245   URL:=http://www.gnu.org/software/coreutils/
1246 endef
1247
1248 define Package/coreutils-shred/description
1249         Full version of standard GNU shred utility.  Normally, you would not
1250         use this package, since the functionality in BusyBox is more than
1251         sufficient.
1252 endef
1253
1254 define Package/coreutils-shred/install
1255         $(INSTALL_DIR) $(1)/usr/bin
1256         $(CP) $(PKG_INSTALL_DIR)/usr/bin/shred $(1)/usr/bin/
1257 endef
1258
1259 define Package/coreutils-shuf
1260   SECTION:utils
1261   CATEGORY:=Utilities
1262   TITLE:=Utility shuf from the GNU core utilites
1263   URL:=http://www.gnu.org/software/coreutils/
1264 endef
1265
1266 define Package/coreutils-shuf/description
1267         Full version of standard GNU shuf utility.  Normally, you would not
1268         use this package, since the functionality in BusyBox is more than
1269         sufficient.
1270 endef
1271
1272 define Package/coreutils-shuf/install
1273         $(INSTALL_DIR) $(1)/usr/bin
1274         $(CP) $(PKG_INSTALL_DIR)/usr/bin/shuf $(1)/usr/bin/
1275 endef
1276
1277 define Package/coreutils-sleep
1278   SECTION:utils
1279   CATEGORY:=Utilities
1280   TITLE:=Utility sleep from the GNU core utilites
1281   URL:=http://www.gnu.org/software/coreutils/
1282 endef
1283
1284 define Package/coreutils-sleep/description
1285         Full version of standard GNU sleep utility.  Normally, you would not
1286         use this package, since the functionality in BusyBox is more than
1287         sufficient.
1288 endef
1289
1290 define Package/coreutils-sleep/install
1291         $(INSTALL_DIR) $(1)/usr/bin
1292         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sleep $(1)/usr/bin/
1293 endef
1294
1295 define Package/coreutils-sort
1296   SECTION:utils
1297   CATEGORY:=Utilities
1298   TITLE:=Utility sort from the GNU core utilites
1299   URL:=http://www.gnu.org/software/coreutils/
1300 endef
1301
1302 define Package/coreutils-sort/description
1303         Full version of standard GNU sort utility.  Normally, you would not
1304         use this package, since the functionality in BusyBox is more than
1305         sufficient.
1306 endef
1307
1308 define Package/coreutils-sort/install
1309         $(INSTALL_DIR) $(1)/usr/bin
1310         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sort $(1)/usr/bin/
1311 endef
1312
1313 define Package/coreutils-split
1314   SECTION:utils
1315   CATEGORY:=Utilities
1316   TITLE:=Utility split from the GNU core utilites
1317   URL:=http://www.gnu.org/software/coreutils/
1318 endef
1319
1320 define Package/coreutils-split/description
1321         Full version of standard GNU split utility.  Normally, you would not
1322         use this package, since the functionality in BusyBox is more than
1323         sufficient.
1324 endef
1325
1326 define Package/coreutils-split/install
1327         $(INSTALL_DIR) $(1)/usr/bin
1328         $(CP) $(PKG_INSTALL_DIR)/usr/bin/split $(1)/usr/bin/
1329 endef
1330
1331 define Package/coreutils-stat
1332   SECTION:utils
1333   CATEGORY:=Utilities
1334   TITLE:=Utility stat from the GNU core utilites
1335   URL:=http://www.gnu.org/software/coreutils/
1336 endef
1337
1338 define Package/coreutils-stat/description
1339         Full version of standard GNU stat utility.  Normally, you would not
1340         use this package, since the functionality in BusyBox is more than
1341         sufficient.
1342 endef
1343
1344 define Package/coreutils-stat/install
1345         $(INSTALL_DIR) $(1)/usr/bin
1346         $(CP) $(PKG_INSTALL_DIR)/usr/bin/stat $(1)/usr/bin/
1347 endef
1348
1349 define Package/coreutils-stty
1350   SECTION:utils
1351   CATEGORY:=Utilities
1352   TITLE:=Utility stty from the GNU core utilites
1353   URL:=http://www.gnu.org/software/coreutils/
1354 endef
1355
1356 define Package/coreutils-stty/description
1357         Full version of standard GNU stty utility.  Normally, you would not
1358         use this package, since the functionality in BusyBox is more than
1359         sufficient.
1360 endef
1361
1362 define Package/coreutils-stty/install
1363         $(INSTALL_DIR) $(1)/usr/bin
1364         $(CP) $(PKG_INSTALL_DIR)/usr/bin/stty $(1)/usr/bin/
1365 endef
1366
1367 define Package/coreutils-su
1368   SECTION:utils
1369   CATEGORY:=Utilities
1370   TITLE:=Utility su from the GNU core utilites
1371   URL:=http://www.gnu.org/software/coreutils/
1372 endef
1373
1374 define Package/coreutils-su/description
1375         Full version of standard GNU su utility.  Normally, you would not
1376         use this package, since the functionality in BusyBox is more than
1377         sufficient.
1378 endef
1379
1380 define Package/coreutils-su/install
1381         $(INSTALL_DIR) $(1)/usr/bin
1382         $(CP) $(PKG_INSTALL_DIR)/usr/bin/su $(1)/usr/bin/
1383 endef
1384
1385 define Package/coreutils-sum
1386   SECTION:utils
1387   CATEGORY:=Utilities
1388   TITLE:=Utility sum from the GNU core utilites
1389   URL:=http://www.gnu.org/software/coreutils/
1390 endef
1391
1392 define Package/coreutils-sum/description
1393         Full version of standard GNU sum utility.  Normally, you would not
1394         use this package, since the functionality in BusyBox is more than
1395         sufficient.
1396 endef
1397
1398 define Package/coreutils-sum/install
1399         $(INSTALL_DIR) $(1)/usr/bin
1400         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sum $(1)/usr/bin/
1401 endef
1402
1403 define Package/coreutils-sync
1404   SECTION:utils
1405   CATEGORY:=Utilities
1406   TITLE:=Utility sync from the GNU core utilites
1407   URL:=http://www.gnu.org/software/coreutils/
1408 endef
1409
1410 define Package/coreutils-sync/description
1411         Full version of standard GNU sync utility.  Normally, you would not
1412         use this package, since the functionality in BusyBox is more than
1413         sufficient.
1414 endef
1415
1416 define Package/coreutils-sync/install
1417         $(INSTALL_DIR) $(1)/usr/bin
1418         $(CP) $(PKG_INSTALL_DIR)/usr/bin/sync $(1)/usr/bin/
1419 endef
1420
1421 define Package/coreutils-tac
1422   SECTION:utils
1423   CATEGORY:=Utilities
1424   TITLE:=Utility tac from the GNU core utilites
1425   URL:=http://www.gnu.org/software/coreutils/
1426 endef
1427
1428 define Package/coreutils-tac/description
1429         Full version of standard GNU tac utility.  Normally, you would not
1430         use this package, since the functionality in BusyBox is more than
1431         sufficient.
1432 endef
1433
1434 define Package/coreutils-tac/install
1435         $(INSTALL_DIR) $(1)/usr/bin
1436         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tac $(1)/usr/bin/
1437 endef
1438
1439 define Package/coreutils-tail
1440   SECTION:utils
1441   CATEGORY:=Utilities
1442   TITLE:=Utility tail from the GNU core utilites
1443   URL:=http://www.gnu.org/software/coreutils/
1444 endef
1445
1446 define Package/coreutils-tail/description
1447         Full version of standard GNU tail utility.  Normally, you would not
1448         use this package, since the functionality in BusyBox is more than
1449         sufficient.
1450 endef
1451
1452 define Package/coreutils-tail/install
1453         $(INSTALL_DIR) $(1)/usr/bin
1454         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tail $(1)/usr/bin/
1455 endef
1456
1457 define Package/coreutils-tee
1458   SECTION:utils
1459   CATEGORY:=Utilities
1460   TITLE:=Utility tee from the GNU core utilites
1461   URL:=http://www.gnu.org/software/coreutils/
1462 endef
1463
1464 define Package/coreutils-tee/description
1465         Full version of standard GNU tee utility.  Normally, you would not
1466         use this package, since the functionality in BusyBox is more than
1467         sufficient.
1468 endef
1469
1470 define Package/coreutils-tee/install
1471         $(INSTALL_DIR) $(1)/usr/bin
1472         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tee $(1)/usr/bin/
1473 endef
1474
1475 define Package/coreutils-test
1476   SECTION:utils
1477   CATEGORY:=Utilities
1478   TITLE:=Utility test from the GNU core utilites
1479   URL:=http://www.gnu.org/software/coreutils/
1480 endef
1481
1482 define Package/coreutils-test/description
1483         Full version of standard GNU test utility.  Normally, you would not
1484         use this package, since the functionality in BusyBox is more than
1485         sufficient.
1486 endef
1487
1488 define Package/coreutils-test/install
1489         $(INSTALL_DIR) $(1)/usr/bin
1490         $(CP) $(PKG_INSTALL_DIR)/usr/bin/test $(1)/usr/bin/
1491         $(CP) $(PKG_INSTALL_DIR)/usr/bin/[ $(1)/usr/bin/
1492 endef
1493
1494 define Package/coreutils-timeout
1495   SECTION:utils
1496   CATEGORY:=Utilities
1497   TITLE:=Utility timeout from the GNU core utilites
1498   URL:=http://www.gnu.org/software/coreutils/
1499 endef
1500
1501 define Package/coreutils-timeout/description
1502         Full version of standard GNU timeout utility.  Normally, you would not
1503         use this package, since the functionality in BusyBox is more than
1504         sufficient.
1505 endef
1506
1507 define Package/coreutils-timeout/install
1508         $(INSTALL_DIR) $(1)/usr/bin
1509         $(CP) $(PKG_INSTALL_DIR)/usr/bin/timeout $(1)/usr/bin/
1510 endef
1511
1512 define Package/coreutils-touch
1513   SECTION:utils
1514   CATEGORY:=Utilities
1515   TITLE:=Utility touch from the GNU core utilites
1516   URL:=http://www.gnu.org/software/coreutils/
1517 endef
1518
1519 define Package/coreutils-touch/description
1520         Full version of standard GNU touch utility.  Normally, you would not
1521         use this package, since the functionality in BusyBox is more than
1522         sufficient.
1523 endef
1524
1525 define Package/coreutils-touch/install
1526         $(INSTALL_DIR) $(1)/usr/bin
1527         $(CP) $(PKG_INSTALL_DIR)/usr/bin/touch $(1)/usr/bin/
1528 endef
1529
1530 define Package/coreutils-tr
1531   SECTION:utils
1532   CATEGORY:=Utilities
1533   TITLE:=Utility tr from the GNU core utilites
1534   URL:=http://www.gnu.org/software/coreutils/
1535 endef
1536
1537 define Package/coreutils-tr/description
1538         Full version of standard GNU tr utility.  Normally, you would not
1539         use this package, since the functionality in BusyBox is more than
1540         sufficient.
1541 endef
1542
1543 define Package/coreutils-tr/install
1544         $(INSTALL_DIR) $(1)/usr/bin
1545         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tr $(1)/usr/bin/
1546 endef
1547
1548 define Package/coreutils-true
1549   SECTION:utils
1550   CATEGORY:=Utilities
1551   TITLE:=Utility true from the GNU core utilites
1552   URL:=http://www.gnu.org/software/coreutils/
1553 endef
1554
1555 define Package/coreutils-true/description
1556         Full version of standard GNU true utility.  Normally, you would not
1557         use this package, since the functionality in BusyBox is more than
1558         sufficient.
1559 endef
1560
1561 define Package/coreutils-true/install
1562         $(INSTALL_DIR) $(1)/usr/bin
1563         $(CP) $(PKG_INSTALL_DIR)/usr/bin/true $(1)/usr/bin/
1564 endef
1565
1566 define Package/coreutils-truncate
1567   SECTION:utils
1568   CATEGORY:=Utilities
1569   TITLE:=Utility truncate from the GNU core utilites
1570   URL:=http://www.gnu.org/software/coreutils/
1571 endef
1572
1573 define Package/coreutils-truncate/description
1574         Full version of standard GNU truncate utility.  Normally, you would not
1575         use this package, since the functionality in BusyBox is more than
1576         sufficient.
1577 endef
1578
1579 define Package/coreutils-truncate/install
1580         $(INSTALL_DIR) $(1)/usr/bin
1581         $(CP) $(PKG_INSTALL_DIR)/usr/bin/truncate $(1)/usr/bin/
1582 endef
1583
1584 define Package/coreutils-tsort
1585   SECTION:utils
1586   CATEGORY:=Utilities
1587   TITLE:=Utility tsort from the GNU core utilites
1588   URL:=http://www.gnu.org/software/coreutils/
1589 endef
1590
1591 define Package/coreutils-tsort/description
1592         Full version of standard GNU tsort utility.  Normally, you would not
1593         use this package, since the functionality in BusyBox is more than
1594         sufficient.
1595 endef
1596
1597 define Package/coreutils-tsort/install
1598         $(INSTALL_DIR) $(1)/usr/bin
1599         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tsort $(1)/usr/bin/
1600 endef
1601
1602 define Package/coreutils-tty
1603   SECTION:utils
1604   CATEGORY:=Utilities
1605   TITLE:=Utility tty from the GNU core utilites
1606   URL:=http://www.gnu.org/software/coreutils/
1607 endef
1608
1609 define Package/coreutils-tty/description
1610         Full version of standard GNU tty utility.  Normally, you would not
1611         use this package, since the functionality in BusyBox is more than
1612         sufficient.
1613 endef
1614
1615 define Package/coreutils-tty/install
1616         $(INSTALL_DIR) $(1)/usr/bin
1617         $(CP) $(PKG_INSTALL_DIR)/usr/bin/tty $(1)/usr/bin/
1618 endef
1619
1620 define Package/coreutils-uname
1621   SECTION:utils
1622   CATEGORY:=Utilities
1623   TITLE:=Utility uname from the GNU core utilites
1624   URL:=http://www.gnu.org/software/coreutils/
1625 endef
1626
1627 define Package/coreutils-uname/description
1628         Full version of standard GNU uname utility.  Normally, you would not
1629         use this package, since the functionality in BusyBox is more than
1630         sufficient.
1631 endef
1632
1633 define Package/coreutils-uname/install
1634         $(INSTALL_DIR) $(1)/usr/bin
1635         $(CP) $(PKG_INSTALL_DIR)/usr/bin/uname $(1)/usr/bin/
1636 endef
1637
1638 define Package/coreutils-unexpand
1639   SECTION:utils
1640   CATEGORY:=Utilities
1641   TITLE:=Utility unexpand from the GNU core utilites
1642   URL:=http://www.gnu.org/software/coreutils/
1643 endef
1644
1645 define Package/coreutils-unexpand/description
1646         Full version of standard GNU unexpand utility.  Normally, you would not
1647         use this package, since the functionality in BusyBox is more than
1648         sufficient.
1649 endef
1650
1651 define Package/coreutils-unexpand/install
1652         $(INSTALL_DIR) $(1)/usr/bin
1653         $(CP) $(PKG_INSTALL_DIR)/usr/bin/unexpand $(1)/usr/bin/
1654 endef
1655
1656 define Package/coreutils-uniq
1657   SECTION:utils
1658   CATEGORY:=Utilities
1659   TITLE:=Utility uniq from the GNU core utilites
1660   URL:=http://www.gnu.org/software/coreutils/
1661 endef
1662
1663 define Package/coreutils-uniq/description
1664         Full version of standard GNU uniq utility.  Normally, you would not
1665         use this package, since the functionality in BusyBox is more than
1666         sufficient.
1667 endef
1668
1669 define Package/coreutils-uniq/install
1670         $(INSTALL_DIR) $(1)/usr/bin
1671         $(CP) $(PKG_INSTALL_DIR)/usr/bin/uniq $(1)/usr/bin/
1672 endef
1673
1674 define Package/coreutils-unlink
1675   SECTION:utils
1676   CATEGORY:=Utilities
1677   TITLE:=Utility unlink from the GNU core utilites
1678   URL:=http://www.gnu.org/software/coreutils/
1679 endef
1680
1681 define Package/coreutils-unlink/description
1682         Full version of standard GNU unlink utility.  Normally, you would not
1683         use this package, since the functionality in BusyBox is more than
1684         sufficient.
1685 endef
1686
1687 define Package/coreutils-unlink/install
1688         $(INSTALL_DIR) $(1)/usr/bin
1689         $(CP) $(PKG_INSTALL_DIR)/usr/bin/unlink $(1)/usr/bin/
1690 endef
1691
1692 define Package/coreutils-uptime
1693   SECTION:utils
1694   CATEGORY:=Utilities
1695   TITLE:=Utility uptime from the GNU core utilites
1696   URL:=http://www.gnu.org/software/coreutils/
1697 endef
1698
1699 define Package/coreutils-uptime/description
1700         Full version of standard GNU uptime utility.  Normally, you would not
1701         use this package, since the functionality in BusyBox is more than
1702         sufficient.
1703 endef
1704
1705 define Package/coreutils-uptime/install
1706         $(INSTALL_DIR) $(1)/usr/bin
1707         $(CP) $(PKG_INSTALL_DIR)/usr/bin/uptime $(1)/usr/bin/
1708 endef
1709
1710 define Package/coreutils-users
1711   SECTION:utils
1712   CATEGORY:=Utilities
1713   TITLE:=Utility users from the GNU core utilites
1714   URL:=http://www.gnu.org/software/coreutils/
1715 endef
1716
1717 define Package/coreutils-users/description
1718         Full version of standard GNU users utility.  Normally, you would not
1719         use this package, since the functionality in BusyBox is more than
1720         sufficient.
1721 endef
1722
1723 define Package/coreutils-users/install
1724         $(INSTALL_DIR) $(1)/usr/bin
1725         $(CP) $(PKG_INSTALL_DIR)/usr/bin/users $(1)/usr/bin/
1726 endef
1727
1728 define Package/coreutils-vdir
1729   SECTION:utils
1730   CATEGORY:=Utilities
1731   TITLE:=Utility vdir from the GNU core utilites
1732   URL:=http://www.gnu.org/software/coreutils/
1733 endef
1734
1735 define Package/coreutils-vdir/description
1736         Full version of standard GNU vdir utility.  Normally, you would not
1737         use this package, since the functionality in BusyBox is more than
1738         sufficient.
1739 endef
1740
1741 define Package/coreutils-vdir/install
1742         $(INSTALL_DIR) $(1)/usr/bin
1743         $(CP) $(PKG_INSTALL_DIR)/usr/bin/vdir $(1)/usr/bin/
1744 endef
1745
1746 define Package/coreutils-wc
1747   SECTION:utils
1748   CATEGORY:=Utilities
1749   TITLE:=Utility wc from the GNU core utilites
1750   URL:=http://www.gnu.org/software/coreutils/
1751 endef
1752
1753 define Package/coreutils-wc/description
1754         Full version of standard GNU wc utility.  Normally, you would not
1755         use this package, since the functionality in BusyBox is more than
1756         sufficient.
1757 endef
1758
1759 define Package/coreutils-wc/install
1760         $(INSTALL_DIR) $(1)/usr/bin
1761         $(CP) $(PKG_INSTALL_DIR)/usr/bin/wc $(1)/usr/bin/
1762 endef
1763
1764 define Package/coreutils-who
1765   SECTION:utils
1766   CATEGORY:=Utilities
1767   TITLE:=Utility who from the GNU core utilites
1768   URL:=http://www.gnu.org/software/coreutils/
1769 endef
1770
1771 define Package/coreutils-who/description
1772         Full version of standard GNU who utility.  Normally, you would not
1773         use this package, since the functionality in BusyBox is more than
1774         sufficient.
1775 endef
1776
1777 define Package/coreutils-who/install
1778         $(INSTALL_DIR) $(1)/usr/bin
1779         $(CP) $(PKG_INSTALL_DIR)/usr/bin/who $(1)/usr/bin/
1780 endef
1781
1782 define Package/coreutils-whoami
1783   SECTION:utils
1784   CATEGORY:=Utilities
1785   TITLE:=Utility whoami from the GNU core utilites
1786   URL:=http://www.gnu.org/software/coreutils/
1787 endef
1788
1789 define Package/coreutils-whoami/description
1790         Full version of standard GNU whoami utility.  Normally, you would not
1791         use this package, since the functionality in BusyBox is more than
1792         sufficient.
1793 endef
1794
1795 define Package/coreutils-whoami/install
1796         $(INSTALL_DIR) $(1)/usr/bin
1797         $(CP) $(PKG_INSTALL_DIR)/usr/bin/whoami $(1)/usr/bin/
1798 endef
1799
1800 define Package/coreutils-yes
1801   SECTION:utils
1802   CATEGORY:=Utilities
1803   TITLE:=Utility yes from the GNU core utilites
1804   URL:=http://www.gnu.org/software/coreutils/
1805 endef
1806
1807 define Package/coreutils-yes/description
1808         Full version of standard GNU yes utility.  Normally, you would not
1809         use this package, since the functionality in BusyBox is more than
1810         sufficient.
1811 endef
1812
1813 define Package/coreutils-yes/install
1814         $(INSTALL_DIR) $(1)/usr/bin
1815         $(CP) $(PKG_INSTALL_DIR)/usr/bin/yes $(1)/usr/bin/
1816 endef
1817
1818 $(eval $(call BuildPackage,coreutils))
1819 $(eval $(call BuildPackage,coreutils-base64))
1820 $(eval $(call BuildPackage,coreutils-basename))
1821 $(eval $(call BuildPackage,coreutils-cat))
1822 $(eval $(call BuildPackage,coreutils-chcon))
1823 $(eval $(call BuildPackage,coreutils-chgrp))
1824 $(eval $(call BuildPackage,coreutils-chmod))
1825 $(eval $(call BuildPackage,coreutils-chown))
1826 $(eval $(call BuildPackage,coreutils-chroot))
1827 $(eval $(call BuildPackage,coreutils-cksum))
1828 $(eval $(call BuildPackage,coreutils-comm))
1829 $(eval $(call BuildPackage,coreutils-cp))
1830 $(eval $(call BuildPackage,coreutils-csplit))
1831 $(eval $(call BuildPackage,coreutils-cut))
1832 $(eval $(call BuildPackage,coreutils-date))
1833 $(eval $(call BuildPackage,coreutils-dd))
1834 $(eval $(call BuildPackage,coreutils-dir))
1835 $(eval $(call BuildPackage,coreutils-dircolors))
1836 $(eval $(call BuildPackage,coreutils-dirname))
1837 $(eval $(call BuildPackage,coreutils-du))
1838 $(eval $(call BuildPackage,coreutils-echo))
1839 $(eval $(call BuildPackage,coreutils-env))
1840 $(eval $(call BuildPackage,coreutils-expand))
1841 $(eval $(call BuildPackage,coreutils-expr))
1842 $(eval $(call BuildPackage,coreutils-factor))
1843 $(eval $(call BuildPackage,coreutils-false))
1844 $(eval $(call BuildPackage,coreutils-fmt))
1845 $(eval $(call BuildPackage,coreutils-fold))
1846 $(eval $(call BuildPackage,coreutils-groups))
1847 $(eval $(call BuildPackage,coreutils-head))
1848 $(eval $(call BuildPackage,coreutils-hostid))
1849 $(eval $(call BuildPackage,coreutils-id))
1850 $(eval $(call BuildPackage,coreutils-install))
1851 $(eval $(call BuildPackage,coreutils-join))
1852 $(eval $(call BuildPackage,coreutils-kill))
1853 $(eval $(call BuildPackage,coreutils-link))
1854 $(eval $(call BuildPackage,coreutils-ln))
1855 $(eval $(call BuildPackage,coreutils-logname))
1856 $(eval $(call BuildPackage,coreutils-ls))
1857 $(eval $(call BuildPackage,coreutils-md5sum))
1858 $(eval $(call BuildPackage,coreutils-mkdir))
1859 $(eval $(call BuildPackage,coreutils-mkfifo))
1860 $(eval $(call BuildPackage,coreutils-mknod))
1861 $(eval $(call BuildPackage,coreutils-mktemp))
1862 $(eval $(call BuildPackage,coreutils-mv))
1863 $(eval $(call BuildPackage,coreutils-nice))
1864 $(eval $(call BuildPackage,coreutils-nl))
1865 $(eval $(call BuildPackage,coreutils-nohup))
1866 $(eval $(call BuildPackage,coreutils-od))
1867 $(eval $(call BuildPackage,coreutils-paste))
1868 $(eval $(call BuildPackage,coreutils-pathchk))
1869 $(eval $(call BuildPackage,coreutils-pinky))
1870 $(eval $(call BuildPackage,coreutils-pr))
1871 $(eval $(call BuildPackage,coreutils-printenv))
1872 $(eval $(call BuildPackage,coreutils-printf))
1873 $(eval $(call BuildPackage,coreutils-ptx))
1874 $(eval $(call BuildPackage,coreutils-pwd))
1875 $(eval $(call BuildPackage,coreutils-readlink))
1876 $(eval $(call BuildPackage,coreutils-rm))
1877 $(eval $(call BuildPackage,coreutils-rmdir))
1878 $(eval $(call BuildPackage,coreutils-runcon))
1879 $(eval $(call BuildPackage,coreutils-seq))
1880 $(eval $(call BuildPackage,coreutils-sha1sum))
1881 $(eval $(call BuildPackage,coreutils-sha224sum))
1882 $(eval $(call BuildPackage,coreutils-sha256sum))
1883 $(eval $(call BuildPackage,coreutils-sha384sum))
1884 $(eval $(call BuildPackage,coreutils-sha512sum))
1885 $(eval $(call BuildPackage,coreutils-shred))
1886 $(eval $(call BuildPackage,coreutils-shuf))
1887 $(eval $(call BuildPackage,coreutils-sleep))
1888 $(eval $(call BuildPackage,coreutils-sort))
1889 $(eval $(call BuildPackage,coreutils-split))
1890 $(eval $(call BuildPackage,coreutils-stat))
1891 $(eval $(call BuildPackage,coreutils-stty))
1892 $(eval $(call BuildPackage,coreutils-su))
1893 $(eval $(call BuildPackage,coreutils-sum))
1894 $(eval $(call BuildPackage,coreutils-sync))
1895 $(eval $(call BuildPackage,coreutils-tac))
1896 $(eval $(call BuildPackage,coreutils-tail))
1897 $(eval $(call BuildPackage,coreutils-tee))
1898 $(eval $(call BuildPackage,coreutils-test))
1899 $(eval $(call BuildPackage,coreutils-timeout))
1900 $(eval $(call BuildPackage,coreutils-touch))
1901 $(eval $(call BuildPackage,coreutils-tr))
1902 $(eval $(call BuildPackage,coreutils-true))
1903 $(eval $(call BuildPackage,coreutils-truncate))
1904 $(eval $(call BuildPackage,coreutils-tsort))
1905 $(eval $(call BuildPackage,coreutils-tty))
1906 $(eval $(call BuildPackage,coreutils-uname))
1907 $(eval $(call BuildPackage,coreutils-unexpand))
1908 $(eval $(call BuildPackage,coreutils-uniq))
1909 $(eval $(call BuildPackage,coreutils-unlink))
1910 $(eval $(call BuildPackage,coreutils-uptime))
1911 $(eval $(call BuildPackage,coreutils-users))
1912 $(eval $(call BuildPackage,coreutils-vdir))
1913 $(eval $(call BuildPackage,coreutils-wc))
1914 $(eval $(call BuildPackage,coreutils-who))
1915 $(eval $(call BuildPackage,coreutils-whoami))
1916 $(eval $(call BuildPackage,coreutils-yes))