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