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