WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: build extension wiki Abbreviated steps scripted allready ?  (Read 2217 times)

Offline halma

  • Full Member
  • ***
  • Posts: 164
build extension wiki Abbreviated steps scripted allready ?
« on: July 27, 2014, 02:30:54 AM »
Hi

i am trying to build a TC conform Extension, on the TC wiki (http://wiki.tinycorelinux.net/wiki:creating_extensions ) under the ---> Abbreviated steps
point 2 & 3 ... is this allready scripted for automating the building process ?

If not has anyone a good script how to exclude/remove all kind of documentation files/folders and also not needed (empty) directories  cause if i run my script to remove the ( *.a *.h *.la *.m4 *.pc -> dev extension (after --strip-debug) ) files then i have an empty (include) folder

Code: [Select]
#!/bin/sh

ending="*.a *.h *.la *.m4 *.pc"

for i in $ending; do
    find /tmp/lm-sensors -iname $i -exec rm {} \;
done

and to point 3 ... how do i know that an licence needs to be included ?

thanks
Halma
« Last Edit: July 27, 2014, 02:33:39 AM by halma »
1 + 2 = 6  cause  10 - 6 = 78 ;-) lol

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: build extension wiki Abbreviated steps scripted allready ?
« Reply #1 on: July 27, 2014, 02:39:26 AM »

and to point 3 ... how do i know that an licence needs to be included ?


Read it.
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline halma

  • Full Member
  • ***
  • Posts: 164
Re: build extension wiki Abbreviated steps scripted allready ?
« Reply #2 on: July 27, 2014, 02:42:02 AM »
what to read ? the README from the source Package ?
1 + 2 = 6  cause  10 - 6 = 78 ;-) lol

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: build extension wiki Abbreviated steps scripted allready ?
« Reply #3 on: July 27, 2014, 03:12:41 AM »
what to read ? the README from the source Package ?


Files related to licensing lige COPYING, LICENCE or in few case README or other. Their WEB page may help too.
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."