Mageia Bugzilla – Attachment 3042 Details for
Bug 7579
package request linuxsampler (command-line audio sampler)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
script to make tarball from svn
mk_tar (text/plain), 649 bytes, created by
Barry Jackson
on 2012-11-05 01:20:32 CET
(
hide
)
Description:
script to make tarball from svn
Filename:
MIME Type:
Creator:
Barry Jackson
Created:
2012-11-05 01:20:32 CET
Size:
649 bytes
patch
obsolete
>#!/bin/bash ># mk_tar ># Run this script in SOURCES ># To make a tarball from current trunk: ># $ ./mk_tar > >if [[ -f linuxsampler ]]; then >cd linuxsampler >svn up >cd .. >else >svn co https://svn.linuxsampler.org/svn/linuxsampler/trunk linuxsampler >fi > > >cd linuxsampler >rev=$(svnversion) > >make -f Makefile.cvs > >cd .. > ># Create tarball >echo "Please wait creating tarball..." >[[ -f linuxsampler-$rev.tar.xz ]] && rm linuxsampler-$rev.tar.xz >tar -cJf linuxsampler-$rev.tar.xz linuxsampler/ --exclude-vcs >[[ $? = 0 ]] && chmod 644 linuxsampler-$rev.tar.xz && \ >echo "Written linuxsampler-$rev.tar.xz" > >svn co https://svn.linuxsampler.org/svn/libgig/trunk libgig
#!/bin/bash # mk_tar # Run this script in SOURCES # To make a tarball from current trunk: # $ ./mk_tar if [[ -f linuxsampler ]]; then cd linuxsampler svn up cd .. else svn co https://svn.linuxsampler.org/svn/linuxsampler/trunk linuxsampler fi cd linuxsampler rev=$(svnversion) make -f Makefile.cvs cd .. # Create tarball echo "Please wait creating tarball..." [[ -f linuxsampler-$rev.tar.xz ]] && rm linuxsampler-$rev.tar.xz tar -cJf linuxsampler-$rev.tar.xz linuxsampler/ --exclude-vcs [[ $? = 0 ]] && chmod 644 linuxsampler-$rev.tar.xz && \ echo "Written linuxsampler-$rev.tar.xz" svn co https://svn.linuxsampler.org/svn/libgig/trunk libgig
View Attachment As Raw
Actions:
View
Attachments on
bug 7579
:
2858
|
2859
|
2883
|
2884
|
2897
|
3037
|
3041
|
3042
|
3043
|
3085