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