* [Buildroot] New package
@ 2012-06-18 1:51 djames.suhanko
2012-06-18 6:57 ` Thomas Petazzoni
0 siblings, 1 reply; 6+ messages in thread
From: djames.suhanko @ 2012-06-18 1:51 UTC (permalink / raw)
To: buildroot
Hello all!
I did a package compilation named 'bar'. This program is used to generate
a progress bar to shell scripts and is used in PhantomClone project too.
This project is hosted in Sourceforge.
The program package/bar:
Config.in:
config BR2_PACKAGE_BAR
bool "Bar"
select BR2_PACKAGE_NEWT
help
Progress bar to command line scripts
http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download
bar.mk:
#############################################################
#
# Bar
#
#############################################################
BAR_VERSION = 1.10.9
BAR_SOURCE = bar_1.10.9.tar.gz
BAR_SITE =
http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download
#BAR_DEPENDENCIES = host-pkg-config e2fsprogs libgcrypt attr gzip zlib
bzip2 lzo intltool libgpg-error gettext
BAR_INSTALL_STAGING = NO
BAR_INSTALL_TARGET = YES
BAR_CONF_ENV = ac_cv_func_sysconf=no
BAR_CONF_OPT = --disable-dependency-tracking --disable-use-memalign
$(eval $(call AUTOTARGETS,package,bar))
The compilation is OK, but the automatic download from sourceforge isn't
working. How can I do the automatic download from sourceforge?
--
Djames Suhanko
LinuxUser 158.760
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120617/373ccbb5/attachment.html>
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] New package 2012-06-18 1:51 [Buildroot] New package djames.suhanko @ 2012-06-18 6:57 ` Thomas Petazzoni 2012-06-18 13:59 ` djames.suhanko 2012-06-19 12:20 ` Daniel Nyström 0 siblings, 2 replies; 6+ messages in thread From: Thomas Petazzoni @ 2012-06-18 6:57 UTC (permalink / raw) To: buildroot Le Sun, 17 Jun 2012 22:51:59 -0300, "djames.suhanko" <djames.suhanko@gmail.com> a ?crit : > BAR_SITE = > http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download > The compilation is OK, but the automatic download from sourceforge isn't > working. How can I do the automatic download from sourceforge? This BAR_SITE will not work. Getting the correct URLs from SourceForge is a bit funky. Tip: download from Firefox, and in the downloads window, right click on the file, and ask Firefox for the original location of the file. It will be: http://kent.dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz So, you should use: BAR_SITE = http://$(BR2_SOURCEFORGE_MIRROR)/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz Regards, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] New package 2012-06-18 6:57 ` Thomas Petazzoni @ 2012-06-18 13:59 ` djames.suhanko 2012-06-18 17:05 ` djames.suhanko 2012-06-19 12:20 ` Daniel Nyström 1 sibling, 1 reply; 6+ messages in thread From: djames.suhanko @ 2012-06-18 13:59 UTC (permalink / raw) To: buildroot Thanks, Thomas! On Mon, Jun 18, 2012 at 3:57 AM, Thomas Petazzoni < thomas.petazzoni@free-electrons.com> wrote: > Le Sun, 17 Jun 2012 22:51:59 -0300, > "djames.suhanko" <djames.suhanko@gmail.com> a ?crit : > > > BAR_SITE = > > > http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download > > > The compilation is OK, but the automatic download from sourceforge isn't > > working. How can I do the automatic download from sourceforge? > > This BAR_SITE will not work. Getting the correct URLs from SourceForge > is a bit funky. Tip: download from Firefox, and in the downloads > window, right click on the file, and ask Firefox for the original > location of the file. It will be: > > > http://kent.dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz > > So, you should use: > > BAR_SITE = http:// > $(BR2_SOURCEFORGE_MIRROR)/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz > > Regards, > > Thomas > -- > Thomas Petazzoni, Free Electrons > Kernel, drivers, real-time and embedded Linux > development, consulting, training and support. > http://free-electrons.com > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- Djames Suhanko LinuxUser 158.760 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120618/108decdf/attachment.html> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] New package 2012-06-18 13:59 ` djames.suhanko @ 2012-06-18 17:05 ` djames.suhanko 0 siblings, 0 replies; 6+ messages in thread From: djames.suhanko @ 2012-06-18 17:05 UTC (permalink / raw) To: buildroot Thomas, I forgot to say that I'm using the 1.10.9 version because the newer is crashing here. And thank you again! On Mon, Jun 18, 2012 at 10:59 AM, djames.suhanko <djames.suhanko@gmail.com>wrote: > Thanks, Thomas! > > > On Mon, Jun 18, 2012 at 3:57 AM, Thomas Petazzoni < > thomas.petazzoni at free-electrons.com> wrote: > >> Le Sun, 17 Jun 2012 22:51:59 -0300, >> "djames.suhanko" <djames.suhanko@gmail.com> a ?crit : >> >> > BAR_SITE = >> > >> http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download >> >> > The compilation is OK, but the automatic download from sourceforge isn't >> > working. How can I do the automatic download from sourceforge? >> >> This BAR_SITE will not work. Getting the correct URLs from SourceForge >> is a bit funky. Tip: download from Firefox, and in the downloads >> window, right click on the file, and ask Firefox for the original >> location of the file. It will be: >> >> >> http://kent.dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz >> >> So, you should use: >> >> BAR_SITE = http:// >> $(BR2_SOURCEFORGE_MIRROR)/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz >> >> Regards, >> >> Thomas >> -- >> Thomas Petazzoni, Free Electrons >> Kernel, drivers, real-time and embedded Linux >> development, consulting, training and support. >> http://free-electrons.com >> _______________________________________________ >> buildroot mailing list >> buildroot at busybox.net >> http://lists.busybox.net/mailman/listinfo/buildroot > > > > > -- > Djames Suhanko > LinuxUser 158.760 > > -- Djames Suhanko LinuxUser 158.760 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120618/d9cdba1c/attachment.html> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] New package 2012-06-18 6:57 ` Thomas Petazzoni 2012-06-18 13:59 ` djames.suhanko @ 2012-06-19 12:20 ` Daniel Nyström 2012-06-19 12:25 ` Thomas Petazzoni 1 sibling, 1 reply; 6+ messages in thread From: Daniel Nyström @ 2012-06-19 12:20 UTC (permalink / raw) To: buildroot On Mon, Jun 18, 2012 at 8:57 AM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Le Sun, 17 Jun 2012 22:51:59 -0300, > "djames.suhanko" <djames.suhanko@gmail.com> a ?crit : > >> BAR_SITE = >> http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.10.9/bar_1.10.9.tar.gz/download > >> The compilation is OK, but the automatic download from sourceforge isn't >> working. How can I do the automatic download from sourceforge? > > This BAR_SITE will not work. Getting the correct URLs from SourceForge > is a bit funky. Tip: download from Firefox, and in the downloads > window, right click on the file, and ask Firefox for the original > location of the file. It will be: > > http://kent.dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz > > So, you should use: > > BAR_SITE = http://$(BR2_SOURCEFORGE_MIRROR)/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz I think it's even: BAR_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] New package 2012-06-19 12:20 ` Daniel Nyström @ 2012-06-19 12:25 ` Thomas Petazzoni 0 siblings, 0 replies; 6+ messages in thread From: Thomas Petazzoni @ 2012-06-19 12:25 UTC (permalink / raw) To: buildroot Le Tue, 19 Jun 2012 14:20:16 +0200, Daniel Nystr?m <daniel.nystrom@timeterminal.se> a ?crit : > > BAR_SITE = http://$(BR2_SOURCEFORGE_MIRROR)/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz > > I think it's even: > BAR_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz Oops, indeed, sorry. I did the $(BR2_SOURCEFORGE_MIRROR) replacement manually... and did it incorrectly. Thanks, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-06-19 12:25 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-06-18 1:51 [Buildroot] New package djames.suhanko 2012-06-18 6:57 ` Thomas Petazzoni 2012-06-18 13:59 ` djames.suhanko 2012-06-18 17:05 ` djames.suhanko 2012-06-19 12:20 ` Daniel Nyström 2012-06-19 12:25 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox