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